-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
82 lines (72 loc) · 2.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
source 'http://rubygems.org'
gem 'rails', '3.0.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem "mongoid", ">=2.0.0.rc.6"
gem "bson_ext", "~> 1.2"
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
# Bundle the extra gems:
gem 'haml-rails'
# gem 'jquery-rails'
gem 'devise', :git => "https://github.com/plataformatec/devise.git"
gem 'rack-facebook-signed-request', :git => 'git://github.com/wink/rack-facebook-signed-request.git'
# gem 'devise_oauth2_canvas_facebook'
gem "oa-oauth", :require => "omniauth/oauth"
gem 'mogli'
# gem 'facebooker2'
gem 'hpricot'
gem 'ruby_parser'
# gem 'formtastic', '1.1.0.beta'
gem 'simple_form'
gem 'activemerchant'
# gem 'braintree', '2.5.0' # something else is requiring this version. not sure what...not activemerchant
gem 'inherited_resources', '>=1.1.2'
gem 'inherited_resources_views'
gem 'responders'
# gem 'has_scope'
# gem 'install_theme'
# gem 'nifty-generators'
gem 'compass', ">= 0.10.2"
gem 'compass-960-plugin', :require => 'ninesixty'
gem 'carrierwave'
gem 'rmagick'
gem 'barista', '>= 0.5.0'
# gem 'vote_fu'
gem 'rack-ssl-enforcer', :require => 'rack/ssl-enforcer'
# gem 'bj'
# gem 'nokogiri'
# gem 'aws-s3', :require => 'aws/s3'
gem 'lorem'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test, :cucumber do
gem 'faker'
gem 'rspec-rails', ">= 2.0.0.beta.19"
gem 'capybara'
gem 'database_cleaner'
# gem 'factory_girl'
gem 'cucumber-rails'
gem 'autotest'
gem 'autotest-rails-pure'
gem 'autotest-growl'
gem 'shoulda'
gem 'spork'
gem 'launchy'
gem 'test_notifier'
gem 'fabrication'#, :git => 'git://github.com/wink/fabrication.git'
# gem 'mongoid-rspec', :git => 'git://github.com/shingara/mongoid-rspec.git'
gem 'redgreen'
gem 'fakeweb'
gem 'delorean'
gem 'steak'
end
group :development do
gem 'rails3-generators'
gem 'heroku_san', :git => 'git://github.com/wink/heroku_san.git'
end