-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
49 lines (42 loc) · 973 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
41
42
43
44
45
46
47
48
49
source :rubygems
gem 'rails', '3.0.7'
gem 'pg'
gem 'configurable_engine'
gem 'paginate_alphabetically', git: 'git://github.com/edendevelopment/paginate_alphabetically.git', branch: 'bundler'
gem 'haml'
gem 'compass'
gem 'inherited_resources', '1.1.2'
gem 'rmagick', "= 2.12.2", :require => 'RMagick'
gem 'aws-s3', :require => 'aws/s3'
gem 'fog'
gem 'dragonfly'
gem 'devise', "1.1.2"
gem 'formtastic'
gem 'validation_reflection'
gem 'jelly'
gem 'acts_as_commentable'
gem 'ssl_requirement'
gem 'escape_utils'
group :development do
gem "rspec-rails"
gem 'rack-cache', :require => 'rack/cache'
gem 'heroku_san', '1.0.2'
gem 'ruby-debug19'
gem 'thin'
end
group :test do
gem 'jasmine'
gem 'rack-cache', :require => 'rack/cache'
gem "rspec-rails"
gem 'capybara'
gem 'database_cleaner'
gem 'culerity'
gem 'cucumber-rails'
gem 'metric_fu'
gem 'reek'
gem 'roodi'
gem 'googlecharts'
gem 'launchy'
gem 'factory_girl'
gem 'ruby-debug19'
end