-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
executable file
·53 lines (46 loc) · 1.17 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.1'
gem 'rails', '~> 6.1.1'
gem 'puma', '~> 4.1'
gem 'sass-rails'
gem 'webpacker', '~> 5.2', '>= 5.2.1'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.7'
gem 'redis', '~> 4.0'
gem 'bcrypt', '~> 3.1.7'
gem 'image_processing', '~> 1.2'
gem 'bootsnap', '1.5.1'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'jquery-ui-rails'
gem 'sprockets-rails'
gem 'webpack'
gem 'simple_form'
gem 'rails-controller-testing'
gem 'faker'
gem 'sendgrid-ruby'
gem 'gon', '~> 6.1'
gem 'roo', '~> 2.7', '>= 2.7.1'
gem 'spreadsheet', '~> 1.2', '>= 1.2.7'
group :development, :test do
gem 'sqlite3', '~> 1.4', '>= 1.4.2'
gem 'byebug', '9.0.6', platform: :mri
end
group :development do
gem 'web-console', '3.5.1'
gem 'listen', '3.4.1'
gem 'spring', '2.1.1'
gem 'spring-watcher-listen', '2.0.1'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'minitest', '~> 5.8', '>= 5.8.4'
gem 'minitest-reporters'
end
group :production do
gem 'pg', '1.2.3'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]