-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (50 loc) · 1.06 KB
/
Gemfile
File metadata and controls
52 lines (50 loc) · 1.06 KB
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
source 'https://rubygems.org'
gem 'rails', '4.1.1'
gem 'pg'
gem 'active_model_serializers', '0.8.1'
# broken 2.12.0 release
gem 'unicorn'
gem 'will_paginate'
gem 'carrierwave'
gem 'mini_magick'
gem 'ransack'
gem 'globalize', '~> 4.0.3'
group :development, :test, :production do
gem 'forgery'
gem 'faker'
end
group :development do
gem 'quiet_assets'
gem 'byebug'
gem 'pry-rails'
gem 'pry-doc'
gem 'annotate'
gem 'letter_opener'
gem 'better_errors'
gem 'binding_of_caller'
gem 'spring'
gem 'rvm-capistrano'
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-nginx-unicorn'
end
group :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'childprocess', '0.3.6'
gem 'spork', '1.0.0rc4'
gem 'database_cleaner'
gem 'shoulda-matchers'
gem 'fuubar'
gem 'capybara', '~> 2.1'
gem 'selenium-webdriver'
gem 'connection_pool'
gem 'guard-rspec'
gem 'guard-spork'
gem 'rb-fsevent', require: false
gem 'growl', '~> 1.0.3'
gem 'webmock'
end
gem 'awesome_nested_set'