-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (42 loc) · 1.08 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
source 'https://rubygems.org'
gem 'rails', '~> 4.1.0'
gem 'pg', '0.17.1'
gem 'jbuilder', '~> 1.2'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'active_model_serializers', '0.8.1'
gem 'paperclip', '~> 4.1.1'
gem 'aws-sdk', '1.38.0'
gem 'authority', '~> 2.10.0'
gem 'devise', '3.0.0.rc'
gem 'versioncake', '2.4'
gem 'grocer', '~> 0.5.0'
gem 'gcm', '0.0.7'
gem 'rails_12factor', '0.0.2'
gem 'newrelic_rpm'
gem 'mandrill_mailer'
gem 'searchkick', '~> 0.7.6'
gem 'sidekiq', '3.0.2'
gem 'gibbon', '~> 1.1.2'
gem 'twitter'
gem 'omniauth'
gem "koala", "~> 1.8.0rc1"
gem 'knoda_core', :git => "https://knoda-build:[email protected]/knodafuture/knoda_core.git", :branch => 'master'
# Use this to test local core engine changes
#gem'knoda_core', :path => "../knoda_core"
group :development, :test do
gem 'rspec-rails', '~> 2.14.1'
gem 'factory_girl_rails', '4.2.1'
gem 'faker', '1.1.2'
gem 'pry-rails', '0.3.1'
end
group :test do
gem 'database_cleaner', '~> 1.3.0'
gem 'simplecov', '0.7.1'
gem 'sqlite3'
end
group :production do
gem 'unicorn'
gem 'memcachier'
gem 'dalli'
end
ruby '2.0.0'