зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-08-28 15:36:17 +03:00
- Update ActiveAdmin from beta16 to beta20 - Drop support for Rails 6.1, 7.0, 7.1 and ActiveAdmin 2.x/3.x - Minimum requirements now: Rails 7.2+, Ruby 3.2+, ActiveAdmin 4.x - Reduce CI jobs from 22+ to 6 (2 gemfiles × 3 Ruby versions) - Clean up obsolete documentation files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 строки
497 B
Ruby
20 строки
497 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Rails 7.2 with ActiveAdmin 4.x beta
|
|
appraise 'rails-7.2-active-admin-4.x' do
|
|
gem 'rails', '~> 7.2.0'
|
|
gem 'activeadmin', '4.0.0.beta20'
|
|
gem 'sqlite3' # 7.2 can use newer sqlite3
|
|
gem 'importmap-rails'
|
|
gem 'propshaft'
|
|
end
|
|
|
|
# Rails 8.0 with ActiveAdmin 4.x beta
|
|
appraise 'rails-8.0-active-admin-4.x' do
|
|
gem 'rails', '~> 8.0.0'
|
|
gem 'activeadmin', '4.0.0.beta20'
|
|
gem 'sqlite3' # Rails 8 needs latest sqlite3
|
|
gem 'importmap-rails'
|
|
gem 'propshaft'
|
|
end
|