-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (35 loc) · 1.13 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
source 'https://rubygems.org'
ruby '2.5.0'
gem 'rails', '~> 5.2.0.rc2'
gem 'pg', '~> 1.0.0'
gem 'puma', '~> 3.11'
gem 'devise', '~> 4.4.3'
gem 'pundit', '~> 1.1.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jbuilder', '~> 2.7.0'
gem 'webpacker', '~> 3.3.1'
gem 'bootstrap', '~> 4.0.0'
gem 'jquery-rails', '~> 4.3.1'
gem 'nokogiri', '~> 1.8.2'
gem 'sidekiq', '~> 5.1.3'
gem 'redis', '~> 4.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development, :test do
gem 'capybara', '~> 3.0.1'
gem 'selenium-webdriver', '~> 3.11.0'
gem 'rspec-rails', '~> 3.7.2'
gem 'shoulda-matchers', '~> 3.1.2'
gem 'factory_bot_rails', '~> 4.8.2'
gem 'database_cleaner', '~> 1.6.2'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end