-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (35 loc) · 729 Bytes
/
Gemfile
File metadata and controls
41 lines (35 loc) · 729 Bytes
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
source 'https://rubygems.org'
ruby '2.7.7'
gem 'rails', '5.2.2'
gem 'sprockets'
gem 'bcrypt-ruby'
gem 'faker'
gem "paperclip"
gem "cancan"
gem 'pg'
gem 'kaminari'
gem 'mini_magick'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jbuilder'
gem 'factory_girl_rails'
gem 'aws-sdk', require: false
gem 'nokogiri', '>= 1.10.4'
gem 'rubyzip', '>= 1.2.2'
gem 'psych', '< 4' # Because of incompatible psych 4 changes and rails version https://bugs.ruby-lang.org/issues/17866
group :development, :test do
gem 'rspec-rails'
gem 'pry-byebug'
end
group :test do
gem 'selenium-webdriver'
gem 'capybara'
end
group :doc do
gem 'sdoc', require: false
end
group :production do
gem 'rails_12factor'
end