зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-08-28 15:36:17 +03:00
- Switch to ActiveAdmin 4 beta with Tailwind CSS - Replace Sprockets with Propshaft for Rails 8 - Migrate from jQuery to vanilla JavaScript - Implement proper module initialization without setTimeout hacks - Add esbuild for JavaScript bundling with clean import aliases - Configure Tailwind CSS build process with ActiveAdmin plugin - Update engine configuration for both Propshaft and Sprockets - Add comprehensive documentation for AA4 gem updates - Maintain backward compatibility with legacy AA versions 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
31 строка
1.2 KiB
Ruby
31 строка
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
lib = File.expand_path('lib', __dir__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'activeadmin/quill_editor/version'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = 'activeadmin_quill_editor'
|
|
spec.version = ActiveAdmin::QuillEditor::VERSION
|
|
spec.summary = 'Quill Editor for ActiveAdmin'
|
|
spec.description = 'An Active Admin plugin to use Quill Rich Text Editor'
|
|
spec.license = 'MIT'
|
|
spec.authors = ['Mattia Roccoberton']
|
|
spec.email = 'mat@blocknot.es'
|
|
spec.homepage = 'https://github.com/rs-pro/activeadmin-quill_editor'
|
|
|
|
spec.required_ruby_version = '>= 3.2'
|
|
|
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
spec.metadata['changelog_uri'] = 'https://github.com/rs-pro/activeadmin-quill_editor/blob/main/CHANGELOG.md'
|
|
spec.metadata['source_code_uri'] = spec.homepage
|
|
|
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
|
|
spec.files = Dir['{app,lib,vendor}/**/*', 'LICENSE.txt', 'Rakefile', 'README.md']
|
|
spec.require_paths = ['lib']
|
|
|
|
spec.add_runtime_dependency 'activeadmin', '>= 2.9', '< 5' # rubocop:disable Gemspec/AddRuntimeDependency
|
|
spec.add_runtime_dependency 'rails', '>= 7.0'
|
|
end
|