-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
84 lines (77 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
source 'https://rubygems.org'
ruby "2.7.1"
def os_is(re)
RbConfig::CONFIG['host_os'] =~ re
end
gem 'rails', '~> 5.2.4', '>= 5.2.4.6'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.12', '>= 3.12.6'
gem 'sass-rails', '~> 5.1', '>= 5.1.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2', '>= 4.2.2'
gem 'jquery-rails', '>= 4.4.0'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.7', '>= 2.7.0'
# gem 'devise'
gem 'devise', git: 'https://github.com/plataformatec/devise.git', branch: 'master'
gem 'omniauth-google-oauth2', '0.5.0'
gem 'slim-rails', git: 'https://github.com/yasaichi/slim-rails.git', branch: 'pass-context-object-to-render'
# gem 'bootstrap', '~> 4.0.0.alpha5'
gem 'bourbon'
gem 'neat'
gem 'money'
gem 'coveralls', '>= 0.8.19', require: false
gem 'simple_form', '>= 5.0.2'
# gem 'simple_form', git: 'https://github.com/elsurudo/simple_form.git', branch: 'rails-5.1.0'
gem 'typhoeus'
gem 'restcountry', '>= 0.5.2'
gem 'sidekiq', '>= 5.0.4'
gem "sidekiq-cron", "~> 0.4.5"
gem 'bcrypt'
gem 'dalli'
gem 'gakubuchi', '>= 1.4.0'
gem 'webpacker', '~> 3.6', '>= 3.6.0'
gem "nitrolinks-rails", ">= 0.3.0"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# gem 'therubyracer', platforms: :ruby
group :development, :test do
gem 'dotenv-rails', '>= 2.7.6'
gem 'byebug', platform: :mri
gem 'nokogiri', '~> 1.10.8'
gem 'jasmine-rails', '>= 0.15.0'
gem 'cypress-on-rails', '~> 1.1', '>= 1.1.1'
end
group :development do
gem 'annotate', '>= 2.7.2'
gem 'guard'
gem 'guard-rspec', require: false
gem 'guard-livereload', require: false
gem 'listen', '~> 3.0.5'
gem 'rack-livereload', '>= 0.3.16'
gem 'terminal-notifier-guard', platforms: :ruby, install_if: os_is(/darwin/)
gem 'sextant', git: 'https://github.com/mpakus/sextant.git'
gem 'spring', '>= 2.0.2'
gem 'spring-watcher-listen', '~> 2.0.1'
gem 'spring-commands-rspec', '>= 1.0.4'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.7.0'
end
group :test do
gem 'codeclimate-test-reporter', '>= 1.0.8', require: false
gem 'simplecov', '>= 0.12.0', require: false
gem 'factory_bot_rails', '>= 6.1.0'
gem 'database_cleaner'
gem 'api_matchers', '>= 0.6.2'
gem 'rspec-rails', '>= 4.0.1'
gem 'shoulda-matchers', '>= 3.1.1'
end
group :production do
gem 'newrelic_rpm'
gem 'scout_apm'
gem 'rack-timeout'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]