forked from inertiajs/inertia-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inertia_rails.gemspec
32 lines (25 loc) · 1.18 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
30
31
32
# 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.email = ['brian@bellawatt.com', 'brandon@bellawatt.com', 'eugene@bellawatt.com']
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.required_ruby_version = '>= 3.0'
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_dependency 'railties', '>= 6'
end