зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-08-28 15:36:17 +03:00
- Add Appraisal gem for managing multiple test gemfiles - Create test matrix for Rails 6.1-8.0 and ActiveAdmin 2.9-4.x - Consolidate multiple workflow files into single ci.yml - Use matrix strategy to test across Ruby 3.0-3.3 - Remove deprecated individual workflow files - Add gemfiles/ to gitignore as they're generated - Improve backward compatibility support
28 строки
582 B
Ruby
28 строки
582 B
Ruby
# frozen_string_literal: true
|
|
|
|
begin
|
|
require 'bundler/setup'
|
|
rescue LoadError
|
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
end
|
|
|
|
APP_RAKEFILE = File.expand_path('spec/dummy/Rakefile', __dir__)
|
|
load 'rails/tasks/engine.rake'
|
|
|
|
load 'rails/tasks/statistics.rake'
|
|
|
|
require 'bundler/gem_tasks'
|
|
|
|
begin
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
# t.ruby_opts = %w[-w]
|
|
t.rspec_opts = ['--color', '--format documentation']
|
|
end
|
|
|
|
task default: :spec
|
|
rescue LoadError
|
|
puts '! LoadError: no RSpec available'
|
|
end
|