forked from Samweli/twaa-mtaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (49 loc) · 1.01 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'http://rubygems.org'
ruby "2.2.3"
gem 'rails', '~> 3.2.13'
gem 'active_model_serializers', '0.9.2'
gem 'arel'
gem 'browser'
gem 'devise', '2.2.2'
gem 'execjs'
gem 'geokit'
gem 'google-analytics-rails', '1.1.1'
gem 'haml', '~> 3.2.0.alpha'
gem 'haml-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'omniauth-facebook'
gem "paranoia", "~> 1.0"
gem 'pg'
gem 'rack-contrib', :git => "https://github.com/rack/rack-contrib.git", :branch => "master"
gem 'rack-cors', :require => 'rack/cors'
gem 'recaptcha', :require => 'recaptcha/rails'
gem 'rest-client'
gem 'social-share-button', '~> 0.1.6'
gem 'test-unit', '~> 3.0'
gem 'therubyracer'
gem 'twilio-ruby', '4.13.0'
gem 'faker'
platforms :jruby do
gem 'jruby-openssl'
gem 'therubyrhino'
end
platforms :ruby_18 do
gem 'fastercsv'
end
group :assets do
gem 'uglifier'
end
group :production do
gem 'passenger'
end
group :development do
gem 'nifty-generators'
end
group :test do
gem "shoulda"
gem 'simplecov'
# gem 'sqlite3'
gem 'webmock'
gem "mocha"
end