-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
65 lines (49 loc) · 1.55 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.4.10'
group :development, :test do
gem 'dotenv-rails' # load before other gems
end
gem 'rails', '~> 5.1.0'
gem 'bootsnap', require: false
gem 'webpacker'
gem 'webpacker-react', '>= 0.3.2'
gem 'sprockets'
gem 'jbuilder'
gem 'pg'
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'intercom-rails' # monitor shoppers
gem 'omniauth'
gem 'omniauth-auth0'
gem 'rollbar' # for error collecting
gem 'newrelic_rpm' # app peformance tracking
gem 'faraday', require: false # for making http request
gem 'carmen', require: false # for country and region information
gem 'countries', require: false # for country currency information
gem 'money', '>= 6.9', require: false
gem 'oj'
gem 'multi_json'
gem 'component_library'
gem 'puma', require: false
group :development do
gem 'annotate', require: false
end
group :development, :test do
gem 'byebug' # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'listen'
gem 'spring', require: false # Spring speeds up development by keeping your application running in the background
gem 'spring-commands-testunit', require: false
gem 'cypress-on-rails', '~> 1.0'
gem 'devise-bootstrapped'
end
group :test do
gem 'webmock'
gem 'factory_girl_rails'
gem 'capybara', require: false
gem 'capybara-email', require: false
gem 'poltergeist', require: false
gem 'shoulda-context'
gem 'simplecov', require: false
gem 'database_cleaner', require: false
gem 'phantomjs', require: false
end