-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (34 loc) · 819 Bytes
/
Gemfile
File metadata and controls
39 lines (34 loc) · 819 Bytes
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
source 'https://rubygems.org'
gem 'rails', '~> 4.0'
gem 'pg'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'spring', group: :development
gem 'inuit-rails', git: 'https://github.com/wegotcoders/inuit-rails'
gem 'devise'
gem 'geocoder'
gem 'faker'
gem 'rails_12factor'
gem 'capistrano', '~> 2.1'
gem 'carrierwave', git: 'https://github.com/carrierwaveuploader/carrierwave'
gem 'mini_magick', '~> 3.8.0'
gem 'fog', '~> 1.34.0'
group :test do
gem 'selenium-webdriver'
end
group :development, :test do
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'pry-byebug'
gem 'mocha'
gem 'cucumber-rails', :require => false
gem 'database_cleaner'
gem 'launchy'
gem 'factory_girl_rails'
end
group :production do
gem 'aws-sdk'
end