-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (48 loc) · 1.57 KB
/
Gemfile
File metadata and controls
53 lines (48 loc) · 1.57 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'
##
#
# Base Dependencies
#
gem 'rails' , '3.2.17'
gem 'rails-api' , '0.2.0'
##
#
# Application Dependencies
#
gem 'active_model_serializers' , '0.8.1'
gem 'airbrake' , '3.1.8'
gem 'aws-sdk' , '1.11.3'
gem 'devise' , '2.2.8'
gem 'digital_ocean' , '0.2.0'
gem 'ffi-uuid' , '0.1.3'
gem 'fog' , '1.15.0'
gem 'foreman' , '0.61.0'
gem 'map' , '6.2.0'
gem 'mongoid' , '3.1.2'
gem 'mongoid_rails_migrations' , '1.0.1'
gem 'mysql2' , '0.3.13'
gem 'pg' , '0.15.1'
gem 'rack-cors' , '0.2.9'
gem 'sidekiq' , '2.8.0'
gem 'sinatra' , '1.4.3'
gem 'slim' , '2.0.0'
gem 'state_machine' , '1.1.2'
gem 'stripe' , :git => 'https://github.com/stripe/stripe-ruby'
gem 'strong_parameters' , '0.2.0'
gem 'systemu' , '2.5.2'
group :development , :test do
gem 'capistrano' , '2.14.2'
gem 'capistrano-ext' , '1.2.1'
gem 'faker' , '1.1.2'
gem 'minitest'
gem 'minitest-rails'
gem 'guard-minitest'
gem 'm'
gem 'mocha' , '0.13.2' , :require => false
gem 'multi_json' , '1.5.0'
gem 'oj' , '2.0.0'
gem 'rvm-capistrano' , '1.2.7'
#jazz_hands includes pry and other console-related gems! need to use pry-byebug for mri 2.0
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'pry-byebug'
end