-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtinymce_extended.gemspec
More file actions
27 lines (23 loc) · 1 KB
/
Copy pathtinymce_extended.gemspec
File metadata and controls
27 lines (23 loc) · 1 KB
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
require_relative "lib/tinymce_extended/version"
Gem::Specification.new do |spec|
spec.name = "tinymce_extended"
spec.version = TinymceExtended::VERSION
spec.authors = ["hfpp2012"]
spec.email = ["hfpp2012@gmail.com"]
spec.summary = ""
spec.homepage = "https://github.com/hfpp2012copy/tinymce_extended"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/hfpp2012copy/tinymce_extended/issues",
"changelog_uri" => "https://github.com/hfpp2012copy/tinymce_extended/releases",
"source_code_uri" => "https://github.com/hfpp2012copy/tinymce_extended",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end