forked from LabPLC/api.labcd.mx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (42 loc) · 1020 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
50
51
52
53
54
55
56
source 'http://rubygems.org'
ruby '2.2.0'
gem 'rails', '4.2.0'
gem 'rails-api'
# PostgreSQL as DB
gem 'pg'
gem 'savon'
gem 'nokogiri', '~> 1.6.6.2'
gem 'httparty', '~> 0.13.3'
gem "figaro"
gem 'kaminari'
group :development do
gem "better_errors"
gem "binding_of_caller"
end
group :development, :test do
gem "rspec-rails", '~> 3.0.0'
gem "factory_girl_rails"
gem 'spring'
gem "database_cleaner"
end
# Deployment tools
gem 'capistrano', '~> 3.3.0'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rails', '~> 1.1.1'
gem 'capistrano-rvm', github: "capistrano/rvm"
gem 'capistrano-rails-console'
# Manage ENV variables
gem 'dotenv-rails'
# Monitoring tools
gem 'newrelic_rpm'
gem 'airbrake'
# To use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', :group => :development
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'