-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (39 loc) · 916 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
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.0.4'
gem 'jquery-rails'
gem 'sass-rails', '~> 4.0.0'
gem 'compass-rails', '1.1.2'
gem 'uglifier', '>= 1.3.0'
gem 'httparty'
gem 'typhoeus'
gem 'useragent'
gem 'carrierwave'
gem 'fog'
gem 'rmagick', :require => false
gem 'unf'
group :development, :test do
gem 'rspec-rails', '~> 2.0'
gem 'launchy' # this lets us call save_and_open_page to see what's on a page for debugging capybara tests
gem 'capybara', '2.0.3' # capybara-webkit works with this version
gem 'show_me_the_cookies'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'jasmine-rails'
gem 'guard'
gem 'guard-jasmine-rails'
gem 'database_cleaner'
gem 'debugger'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'foreman'
gem 'capistrano'
end
group :production do
gem 'pg'
gem 'rails_12factor'
end
gem 'newrelic_rpm'
gem 'unicorn'