-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathGemfile
80 lines (73 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# -*- mode: ruby; -*-
source 'https://rubygems.org'
ruby '2.7.7'
# basic app components
gem 'pg', '0.20' # Rails5: OK to upgrade to latest version
gem 'apartment', '>= 2.1.0' # multi-tenancy: see README.md
gem 'rails', '5.0.1'
gem 'builder'
gem 'bundler', '1.17.3'
gem 'figaro'
gem 'sslrequirement'
gem 'haml'
gem 'gibbon'
gem 'i18n'
gem 'jbuilder', '~> 2.5'
gem 'json', '>= 2.0' # see https://github.com/flori/json/issues/399 - avoid deprecation warning with json 1.8.6
gem 'newrelic_rpm'
gem 'nokogiri', '< 1.16.0'
gem 'platform-api' # for restart task
#gem 'responders', '~> 2.0'
gem 'attr_encrypted', '< 4.0.0'
gem 'rake'
gem 'stripe', '8.7.0'
gem 'will_paginate'
# asset pipeline
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'sassc-rails'
gem 'uglifier'
group :production do
gem 'rack-timeout' # prevent Heroku dynos from hanging up on timeout
gem 'puma'
end
group :test do
gem 'cucumber-rails', '< 3.0.0', :require => false
gem 'capybara'
gem 'chronic'
gem 'launchy'
gem 'rack-test'
gem 'concurrent-ruby', '1.2.3'
gem 'database_cleaner-active_record', '2.1.0'
gem 'email_spec'
gem 'faker'
gem 'fake_stripe'
gem 'selenium-webdriver', require: false
gem 'simplecov-cobertura'
gem 'rspec-json_expectations'
gem 'rails-controller-testing' # for assigns()
gem 'simplecov', '0.17.1'
gem 'timecop'
gem 'webmock'
gem 'vcr'
end
group :development do
# gem 'derailed_benchmarks'
# gem 'query_trail'
# gem 'ruby-prof'
# gem 'stackprof'
# gem 'web-console'
end
group :development, :test do
# the following really belong in a separate 'staging' environment
gem 'factory_bot_rails'
gem 'byebug' # 4
#gem 'faye-websocket'
#gem 'rb-readline'
gem 'rspec', '~> 3.0'
gem 'rspec-rails'
gem 'rspec-its'
gem 'rspec-html-matchers'
gem 'rspec-collection_matchers' # should have(n).items, etc
gem 'rspec-activemodel-mocks' # mock_model(Customer), etc
gem 'sqlite3', '1.3.13'
end