-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo_stream_button.gemspec
25 lines (20 loc) · 1.02 KB
/
turbo_stream_button.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
require_relative "lib/turbo_stream_button/version"
Gem::Specification.new do |spec|
spec.name = "turbo_stream_button"
spec.version = TurboStreamButton::VERSION
spec.authors = ["Sean Doyle"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/seanpdoyle/turbo_stream_button"
spec.summary = "Drive client-side interactions with Turbo Streams"
spec.description = "Combine built-in Button elements and Turbo Streams to drive client-side interactions through declarative HTML"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/seanpdoyle/turbo_stream_button"
spec.metadata["changelog_uri"] = "https://github.com/seanpdoyle/turbo_stream_button/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.add_dependency "rails", ">= 7.1"
spec.add_dependency "zeitwerk"
end