forked from marcoroth/reactionview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreactionview.gemspec
More file actions
39 lines (32 loc) · 1.17 KB
/
reactionview.gemspec
File metadata and controls
39 lines (32 loc) · 1.17 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
# frozen_string_literal: true
require_relative "lib/reactionview/version"
Gem::Specification.new do |spec|
spec.name = "reactionview"
spec.version = ReActionView::VERSION
spec.authors = ["Marco Roth"]
spec.email = ["marco.roth@intergga.ch"]
spec.summary = "An ActionView-compatible ERB engine with modern DX - re-imagined with Herb."
spec.description = spec.summary
spec.homepage = "https://reactionview.dev"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/marcoroth/reactionview"
spec.metadata["changelog_uri"] = "https://github.com/marcoroth/reactionview/releases"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir[
"reactionview.gemspec",
"LICENSE.txt",
"Rakefile",
"README.md",
"app/**/*.rb",
"app/assets/javascripts/**/*.{js,js.map}",
"exe/*",
"sig/**/*.rbs",
"lib/**/*.{rb,tt,rake}"
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "actionview", ">= 7.0"
spec.add_dependency "herb", ">= 0.7.2", "< 1.0.0"
end