-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (32 loc) · 913 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
40
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 'mandrill_mailer'
gem 'searchkick', '~> 0.7.1'
gem 'sidekiq', '3.0.2'
gem 'whenever', :require => false
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 :production do
gem 'unicorn'
gem 'memcachier'
gem 'dalli'
end
gem 'sinatra', '>= 1.3.0', :require => nil
ruby '2.0.0'