forked from marcoroth/herb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathherb.gemspec
More file actions
50 lines (41 loc) · 1.42 KB
/
herb.gemspec
File metadata and controls
50 lines (41 loc) · 1.42 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true
begin
require_relative "lib/herb/version"
rescue LoadError
puts "WARNING: Could not load Herb::VERSION"
end
Gem::Specification.new do |spec|
spec.name = "herb"
spec.version = defined?(Herb::VERSION) ? Herb::VERSION : "0.0.0"
spec.authors = ["Marco Roth"]
spec.email = ["marco.roth@intergga.ch"]
spec.summary = "Powerful and seamless HTML-aware ERB parsing and tooling."
spec.description = spec.summary
spec.homepage = "https://herb-tools.dev"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.require_paths = ["lib"]
spec.files = Dir[
"herb.gemspec",
"LICENSE.txt",
"Makefile",
"Rakefile",
"README.md",
"lib/**/*.rb",
"sig/**/*.rbs",
"src/**/*.{c,h}",
"ext/**/*.{c,h}",
"exe/*"
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.extensions = ["ext/herb/extconf.rb"]
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["rubygems_mfa_required"] = "true"
spec.metadata["homepage_uri"] = "https://herb-tools.dev"
spec.metadata["changelog_uri"] = "https://github.com/marcoroth/herb/releases"
spec.metadata["source_code_uri"] = "https://github.com/marcoroth/herb"
spec.metadata["bug_tracker_uri"] = "https://github.com/marcoroth/herb/issues"
spec.metadata["documentation_uri"] = "https://docs.herb-tools.dev"
# spec.add_dependency "ffi"
end