-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo_router.gemspec
32 lines (25 loc) · 1.32 KB
/
turbo_router.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
31
32
# frozen_string_literal: true
require_relative "lib/turbo_router/version"
Gem::Specification.new do |spec|
spec.name = "turbo-router"
spec.version = TurboRouter::VERSION
spec.authors = ["Bryant Morrill"]
spec.email = ["bryantreadmorrill@gmail.com"]
spec.summary = "TurboRouter - turbo_frames and turbo_streams made easy."
spec.description = "TurboRouter makes it easier to use turbo_frames by dynamically wrapping responses with turbo_frames and providing view helpers to generate links with predictable and straightforward behavior."
spec.homepage = "https://github.com/WriterZephos/turbo-router"
spec.license = "MIT"
# spec.metadata["allowed_push_host"] = ""
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/WriterZephos/turbo-router"
spec.metadata["changelog_uri"] = "https://github.com/WriterZephos/turbo-router"
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.0.2.2"
spec.add_dependency "turbo-rails"
spec.add_development_dependency "pry"
spec.add_development_dependency "rails-controller-testing"
spec.add_development_dependency "rspec", "~> 3.11"
spec.add_development_dependency "rspec-rails", "~> 5.1"
end