-
Notifications
You must be signed in to change notification settings - Fork 1
/
ckeditor5.gemspec
35 lines (29 loc) · 1.06 KB
/
ckeditor5.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
32
33
34
35
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'ckeditor5/rails/version'
Gem::Specification.new do |s|
s.name = 'ckeditor5'
s.version = CKEditor5::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'CKEditor 5 for Rails'
s.authors = [
'Mateusz Bagiński',
'Łukasz Modliński'
]
s.license = 'GPL-2.0'
s.email = '[email protected]'
s.homepage = 'https://github.com/Mati365/ckeditor5-rails'
s.required_ruby_version = '>= 3.0.0'
s.metadata = {
'homepage_uri' => 'https://github.com/Mati365/ckeditor5-rails',
'documentation_uri' => 'https://github.com/Mati365/ckeditor5-rails',
'source_code_uri' => 'https://github.com/Mati365/ckeditor5-rails',
'bug_tracker_uri' => 'https://github.com/Mati365/ckeditor5-rails/issues'
}
s.extra_rdoc_files = ['README.md']
s.test_files = Dir['spec/**/*']
s.files = Dir['lib/**/*'] + ['LICENSE', 'Gemfile', 'README.md']
s.require_paths = ['lib']
s.add_runtime_dependency 'rails', '>= 6.0', '< 9.0'
s.add_runtime_dependency 'terser', '~> 1.0'
end