-
Notifications
You must be signed in to change notification settings - Fork 45
/
inertia_rails.gemspec
29 lines (23 loc) · 1.12 KB
/
inertia_rails.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
# frozen_string_literal: true
require_relative "lib/inertia_rails/version"
Gem::Specification.new do |spec|
spec.name = "inertia_rails"
spec.version = InertiaRails::VERSION
spec.authors = ["Brian Knoles", "Brandon Shar", "Eugene Granovsky"]
spec.summary = "Inertia.js adapter for Rails"
spec.description = "Quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers."
spec.homepage = "https://github.com/inertiajs/inertia-rails"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "#{spec.homepage}/issues",
"changelog_uri" => "#{spec.homepage}/blob/master/CHANGELOG.md",
"documentation_uri" => "#{spec.homepage}/blob/master/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_runtime_dependency "railties", '>= 6'
end