-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathturbo-ruby.gemspec
28 lines (22 loc) · 962 Bytes
/
turbo-ruby.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
# frozen_string_literal: true
require_relative "lib/turbo/ruby/version"
Gem::Specification.new do |spec|
spec.name = "turbo-ruby"
spec.version = Turbo::Ruby::VERSION
spec.authors = ["Marco Roth"]
spec.email = ["[email protected]"]
spec.summary = "Turbo helpers without the requirement for Rails"
spec.description = spec.summary
spec.homepage = "https://github.com/marcoroth/turbo-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/marcoroth/turbo-ruby"
spec.metadata["changelog_uri"] = "https://github.com/marcoroth/turbo-ruby"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["{app,lib}/**/*", "LICENSE", "README.md"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "phlex", "~> 1.0"
end