-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (41 loc) · 1.2 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
source 'http://rubygems.org'
gem 'rails', '~> 3.2.14'
gem 'puma', '~> 2.6.0'
gem 'capistrano-puma', require: false
gem 'pg', '~> 0.14.1'
gem 'devise', '~> 2.2.3'
gem 'rmagick', '~> 2.13.1'
gem 'carrierwave', '~> 0.8.0'
gem "active_model_serializers", "~> 0.7.0"
gem "rails_config", "~> 0.3.2"
gem "validates_existence", "~> 0.8.0"
# use thin instead of webbrick for development
gem 'thin'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano', '~> 3.0.0'
gem 'capistrano-rails'
gem "capistrano-bundler"
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :development, :test do
# To use debugger
gem 'debugger', '~> 1.5.0'
gem 'shoulda', '~> 3.4.0'
#gem 'ruby-debug19', :require => 'ruby-debug'
gem 'rspec-rails', '~> 2.13.0'
gem 'factory_girl_rails', '~> 3.0.0'
gem 'annotate', "~> 2.5.0"
gem 'json_spec', '~> 1.1.0'
gem "better_errors"
gem "binding_of_caller"
end