зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-08-28 15:36:17 +03:00
- Add support ActiveAdmin for 2.x - Add rubocop config - Add frozen_string_literal to ruby files - Apply changes to respect rubocop alerts
22 строки
783 B
Ruby
22 строки
783 B
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/blocknotes/activeadmin_quill_editor'
|
|
|
|
spec.files = `git ls-files -z`.split("\x0")
|
|
spec.require_paths = ['lib']
|
|
|
|
spec.add_runtime_dependency 'activeadmin', '>= 1.0'
|
|
end
|