-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (33 loc) · 851 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
source 'https://rubygems.org'
ruby '2.0.0'
#ruby-gemset=railstutorial_rails_4_0
gem 'rails', '4.0.1'
group :development do
gem 'pg', '0.15.1'
# only use if you install postgres.app and configure a postgres database
end
# ONLY USE THIS BIT FOR FOUNDATION
gem 'sass-rails', '4.0.1'
gem 'uglifier', '2.1.1'
gem 'coffee-rails', '4.0.1'
gem 'jquery-rails', '3.0.4'
gem 'jbuilder', '1.0.2'
gem 'foundation-rails'
gem 'twilio-ruby'
gem 'omniauth'
gem 'omniauth-facebook', '1.4.0'
gem 'carrierwave'
gem "mini_magick"
gem 'chart-js-rails'
gem 'gon'
gem 'acts-as-taggable-on'
gem "nokogiri", "~> 1.6.0"
# http://foundation.zurb.com/docs/rails.html
# Run rails g foundation:install after bundle install to configure.
group :doc do
gem 'sdoc', '0.3.20', require: false
end
group :production do
gem 'pg', '0.15.1'
gem 'rails_12factor', '0.0.2'
end