-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
105 lines (79 loc) · 2.88 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby "3.3.5"
gem "rake"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '7.2.2.1'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.5'
# Use Puma as the app server
gem 'puma', '~> 6.5'
# Use SCSS for stylesheets
gem "dartsass-rails", "~> 0.5.1"
# Use Terser as compressor for JavaScript assets
gem 'terser', '~> 1.2', '>= 1.2.4'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.13'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 5.3'
# Alphabetize non-core gems
gem 'airbrake', '~> 13.0'
# For file storage on S3
gem 'aws-sdk-s3', '~> 1.172'
gem 'bootstrap', git: 'https://github.com/twbs/bootstrap-rubygem.git', branch: '4.6-stable'
# File uploads
gem 'carrierwave', '~> 3.0'
# carrierwave support for S3
gem 'fog-aws', '~> 3.24'
gem 'importmap-rails', '~> 1.2', '>= 1.2.3'
gem 'jquery-rails'
# SFTP for banner import
gem 'net-sftp', '~> 4.0'
# SSH for banner import
gem 'net-ssh', '~> 7.2'
# For authentication
gem 'rack-cas', '~> 0.16.1'
# simple reporting tools
gem 'report_action', '~> 1.0.0'
# For processing excel files
# Until Roo releases a new version containing a fix for Ruby 3.0.1+ we need to pull directly
# from the source. https://github.com/roo-rb/roo/issues/551
gem 'roo', '~> 2.10'
gem 'scout_apm', '~> 5.4'
gem 'sidekiq', '~> 7.3'
gem 'smarter_csv', '~> 1.9'
gem 'sprockets-rails', '~> 3.5', '>= 3.5.2'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails', '~> 1.3', '>= 1.3.4'
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails', '~> 1.5'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
gem 'rubocop-rails', '~> 2.29'
end
group :development do
# Shiny error messages
gem 'better_errors', '~> 2.10'
gem "binding_of_caller"
gem 'brakeman', '~> 6.2', '>= 6.2.2', require: false
# N+1 finder
gem 'bullet', '~> 8.0'
gem 'listen', '~> 3.9'
gem 'rack-mini-profiler', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem 'spring'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '~> 4.2'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 3.40'
gem 'selenium-webdriver', '~> 4.27'
gem 'simplecov', '~> 0.22.0', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]