-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (23 loc) · 786 Bytes
/
Copy pathGemfile
File metadata and controls
30 lines (23 loc) · 786 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Gems required by redmine_dashboard
send :ruby, RUBY_VERSION if ENV['CI']
gem 'rake'
group :test do
gem 'database_cleaner-active_record', '~> 2.0'
gem 'rspec', '~> 3.10'
gem 'rspec-rails'
# Redmine already defines capybara and puma, which required to run
# browser tests.
end
# If rubocop is already defined, the Gemfile is loaded through Redmine's
# own Gemfile as a plugin. In that case our local development gems are
# not needed (and actually conflicting), therefore we skip them.
if @dependencies.none? {|d| d.name == 'rubocop' }
group :development do
gem 'herb', '~> 0.10.1'
gem 'rubocop', '~> 1.88.0'
gem 'rubocop-performance', '~> 1.26.0'
gem 'rubocop-rails', '~> 2.36.0'
end
end