-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhot-view-components.gemspec
30 lines (25 loc) · 1.39 KB
/
hot-view-components.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
require_relative "lib/hot_view_component/version"
Gem::Specification.new do |spec|
spec.name = "hot_view_component"
spec.version = HotViewComponent::VERSION
spec.authors = ["chrisdmacrae", "ncphillips"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/pmfit"
spec.summary = "A ruby gem to tightly integrate View Components with Hotwire and Rails"
spec.description = "A ruby gem to tightly integrate View Components with Hotwire and Rails"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
# to allow pushing to a single host or delete this section to allow pushing to any host.
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/pmfit/hot-view-components"
spec.metadata["changelog_uri"] = "https://github.com/pmfit/hot-view-components/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "rails", ">= 7.0.4.3"
spec.add_dependency 'view_component', '~> 3.0'
spec.add_dependency 'turbo-rails', '~> 1.4.0'
spec.add_dependency 'stimulus-rails', '~> 1.2.0'
end