-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathGemfile
More file actions
26 lines (23 loc) · 753 Bytes
/
Copy pathGemfile
File metadata and controls
26 lines (23 loc) · 753 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Please see hyrax.gemspec for dependency information.
# Install gems from test app
if ENV['RAILS_ROOT']
test_app_gemfile_path = File.expand_path('Gemfile', ENV['RAILS_ROOT'])
eval_gemfile test_app_gemfile_path
else
gemspec
end
group :development, :test do
gem 'benchmark-ips'
gem 'easy_translate'
gem 'i18n-tasks'
gem 'json', '< 3.0' # remove once Hyrax allows rails >= 8.0 - ActiveSupport::JSON only stops passing the quirks_mode kwarg that json 3.0 dropped as of Rails 8
gem 'okcomputer'
gem 'pry' unless ENV['CI']
gem 'pry-byebug' unless ENV['CI']
gem 'rspec'
gem 'ruby-prof', require: false
gem 'semaphore_test_boosters'
gem 'simplecov', require: false
end