-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
70 lines (61 loc) · 1.46 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
60
61
62
63
64
65
66
67
68
69
source 'http://rubygems.org'
source 'http://gems.github.com'
gem 'rails', '3.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'activeadmin'
gem 'ryanb-acts-as-list', '0.1.2', :require => 'acts_as_list'
gem 'devise', '~> 1.4.0'
gem 'devise_invitable', '~> 0.5.0'
gem 'paperclip', '2.3.3'
gem 'nokogiri', '1.5.0'
gem 'high_voltage', '0.9.0', :branch => "rails3"
gem 'activemerchant'
gem 'money', '3.0.0'
gem 'state_machine', '0.9.4'
#gem 'lockfile', '1.4.3'
gem 'puret', '1.0.3'
gem 'will_paginate', '3.0.pre2'
gem 'aws-s3', '0.6.2'
gem 'lperichon-contacts', '1.0.8', :require => 'contacts'
gem 'oauth', '0.4.1'
gem 'json', '1.4.3'
gem 'facebooker2', '0.0.5'
gem 'omniauth', '1.1.1'
gem 'omniauth-cas'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'fb_graph', '1.4'
gem 'analytical', '2.9.0'
gem 'geocoder'
gem 'i18n_data'
gem 'rake', '0.8.7'
gem 'stripe'
gem 'gibbon'
# Use unicorn as the web server
# gem 'unicorn'
gem 'puma'
# Deploy with Capistrano
# gem 'capistrano'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri', '1.4.1'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for certain environments:
# gem 'rspec', :group => :test
# group :test do
# gem 'webrat'
# end
group :development do
gem "ruby-debug19"
gem 'pg'
end
group :test do
gem "machinist"
gem "faker"
gem 'sqlite3-ruby', '1.2.5', :require => 'sqlite3'
end
group :production do
gem 'pg'
end