-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo-mount.gemspec
30 lines (24 loc) · 1.02 KB
/
turbo-mount.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
# frozen_string_literal: true
require_relative "lib/turbo/mount/version"
Gem::Specification.new do |spec|
spec.name = "turbo-mount"
spec.version = Turbo::Mount::VERSION
spec.authors = ["Svyatoslav Kryukov"]
spec.email = ["[email protected]"]
spec.summary = "Use React, Vue, Svelte, and other components with Hotwire."
spec.description = "Add highly interactive components to your Hotwire application with Turbo Mount."
spec.homepage = "https://github.com/skryukov/turbo-mount"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata = {
"bug_tracker_uri" => "#{spec.homepage}/issues",
"changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md",
"documentation_uri" => "#{spec.homepage}/blob/main/README.md",
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
spec.files = Dir["{app,lib}/**/*", "CHANGELOG.md", "LICENSE.txt", "README.md"]
spec.require_paths = ["lib"]
spec.add_dependency "railties", ">= 6.0.0"
end