-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathGemfile
31 lines (24 loc) · 808 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
# Gems required by redmine_dashboard
send :ruby, RUBY_VERSION if ENV['CI']
gem 'rake'
gem 'slim-rails'
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 'rubocop', '~> 1.74.0'
gem 'rubocop-performance', '~> 1.24.0'
gem 'rubocop-rails', '~> 2.30.0'
gem 'slim_lint', '~> 0.32.0'
end
end