-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
activeadmin_trumbowyg.gemspec
31 lines (23 loc) · 1.14 KB
/
activeadmin_trumbowyg.gemspec
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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'activeadmin/trumbowyg/version'
Gem::Specification.new do |spec|
spec.name = 'activeadmin_trumbowyg'
spec.version = ActiveAdmin::Trumbowyg::VERSION
spec.summary = 'Trumbowyg Editor for ActiveAdmin'
spec.description = 'An Active Admin plugin to use Trumbowyg Editor'
spec.license = 'MIT'
spec.authors = ['Mattia Roccoberton']
spec.email = 'mat@blocknot.es'
spec.homepage = 'https://github.com/blocknotes/activeadmin_trumbowyg'
spec.required_ruby_version = '>= 3.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['changelog_uri'] = 'https://github.com/blocknotes/activeadmin_trumbowyg/blob/master/CHANGELOG.md'
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['{app,lib}/**/*', 'LICENSE.txt', 'Rakefile', 'README.md']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activeadmin', '>= 2.9.0'
spec.add_development_dependency 'appraisal', '~> 2.4'
end