-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (30 loc) · 762 Bytes
/
Gemfile
File metadata and controls
32 lines (30 loc) · 762 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
# 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 'ammeter'
gem 'benchmark-ips'
gem 'bixby'
gem 'capybara'
gem 'easy_translate'
gem 'factory_bot_rails'
gem 'i18n-tasks'
gem 'pry' unless ENV['CI']
gem 'pry-byebug' unless ENV['CI']
gem 'rspec'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'ruby-prof', require: false
gem 'semaphore_test_boosters'
gem 'shoulda-matchers', '~> 6.5'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end