-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (51 loc) · 1.71 KB
/
Gemfile
File metadata and controls
56 lines (51 loc) · 1.71 KB
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby_version_file = File.expand_path('.ruby-version', __dir__)
ruby_version_exact = File.read(ruby_version_file).strip
ruby ruby_version_exact
gem 'berkeley_library-av-core', '~> 0.5.0'
gem 'berkeley_library-docker', '~> 0.2.0'
gem 'berkeley_library-logging', '~> 0.2'
gem 'berkeley_library-util', '~> 0.3'
gem 'browser', '~> 4.2'
gem 'jbuilder', '~> 2.13'
gem 'mutex_m'
gem 'non-stupid-digest-assets', '~> 1.0' # Allow static pages (e.g. 404.html) to link to compiled assets
gem 'okcomputer', '~> 1.19'
gem 'omniauth-cas', '~> 3.0'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'puma', '~> 5.3', '>= 5.3.1'
gem 'puma-plugin-delayed_stop', '~> 0.1.2'
gem 'rails', '~> 8.0.4'
gem 'rest-client', '~> 2.1'
gem 'sassc-rails', '~> 2.1'
gem 'sprockets', '~> 4.0'
gem 'sprockets-rails', '~> 3.4', require: 'sprockets/railtie'
gem 'typesafe_enum', '~> 0.2'
group :development, :test do
gem 'brakeman'
gem 'bundle-audit'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'colorize'
gem 'dotenv-rails'
gem 'rspec-rails', '~> 8.0'
end
group :development do
gem 'listen', '>= 3.0'
gem 'rubocop', '~> 1.81.7'
gem 'rubocop-rails', '~> 2.34.2', require: false
gem 'rubocop-rspec', '~> 3.8.0', require: false
gem 'rubocop-rspec_rails', require: false
gem 'ruby-prof', '~> 1.4', require: false
gem 'web-console', '>= 4.1.0'
end
group :test do
gem 'capybara'
gem 'rspec', '~> 3.10'
gem 'rspec_junit_formatter'
# TODO: figure out Selenium under GitHub Actions
# gem 'selenium-webdriver', '~> 4.0'
gem 'simplecov', '~> 0.21', require: false
gem 'simplecov-rcov', '~> 0.2', require: false
gem 'webmock', require: false
end