forked from catameojc/registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
42 lines (36 loc) · 821 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
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'rails-api'
gem 'pg'
gem 'bcrypt-ruby', '~> 3.1.2'
gem 'unicorn'
group :development, :test do
gem 'rspec-rails'
end
group :test do
gem 'minitest-spec-rails'
gem 'webmock'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'timecop'
gem 'json_expressions'
end
group :development do
gem 'capistrano'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano3-unicorn'
gem 'capistrano-sidekiq', '0.5.2'
gem 'letter_opener'
end
gem 'active_model_serializers', '~> 0.8.2'
gem 'will_paginate', '~> 3.1.0'
gem 'rest-client'
gem 'exception_notification'
gem 'money-rails'
gem 'whenever'
gem 'httparty'
gem 'sidekiq'
gem 'epp-client', github: 'dotph/epp-client'