-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (36 loc) · 759 Bytes
/
Gemfile
File metadata and controls
42 lines (36 loc) · 759 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
42
source 'https://rubygems.org'
ruby '2.6.6'
gem 'rails', '5.2.3'
gem 'aws-sdk-s3'
gem 'dotenv'
gem 'ffi', '>= 1.9.24'
gem 'image_processing', '~> 1.0'
gem 'jquery-rails'
gem 'nokogiri', '>= 1.10.4'
gem 'pg'
gem 'puma', '>= 4.3.3'
gem 'sass-rails', '~> 5.0'
gem 'shrine', '~> 3.2.1'
gem 'sidekiq'
gem 'streamio-ffmpeg'
gem 'tzinfo-data'
gem 'webpacker', '~> 3.5'
group :development, :test do
gem 'awesome_print'
gem 'byebug', platform: :mri
gem 'capybara'
gem 'factory_bot_rails'
gem 'pry'
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 3.5'
gem 'shoulda-matchers', '~> 3.1'
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
end
group :production do
gem 'rack-host-redirect'
end