-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
75 lines (59 loc) · 1.37 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby "2.5.1"
# Backend
gem 'rails', '5.2.3'
gem 'puma', '~> 3.0'
gem 'redis', '~> 4.0'
gem 'rest-client'
# Use ActiveStorage variant
gem 'mini_magick', '~> 4.8'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# Shopify
gem 'shopify_app', '9.0.1'
# Backround processing
gem 'sidekiq'
gem 'sidekiq-throttled'
# Frontend
gem 'haml'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem 'active_link_to'
gem 'kaminari'
# Monitoring
gem 'newrelic_rpm'
gem 'mixpanel-ruby'
gem 'sentry-raven'
group :development, :test do
gem 'byebug', platform: :mri
gem 'rb-readline'
gem 'pry'
gem 'rubocop', require: false
gem 'bullet'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'awesome_print'
end
group :test do
gem 'rspec-rails', '~> 3.6'
gem 'factory_bot_rails'
gem 'parallel_tests'
gem 'faker'
gem 'vcr'
gem 'webmock'
end
group :production, :development do
gem 'pg'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]