-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpassages.gemspec
28 lines (23 loc) · 1.02 KB
/
passages.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
$LOAD_PATH << File.dirname(__FILE__) + '/lib'
$LOAD_PATH << File.dirname(__FILE__) + '/app'
require './version'
Gem::Specification.new do |s|
s.name = 'passages'
s.version = Passages::VERSION
s.summary = 'Display and search capabilities for Ruby on Rails routes'
s.description = 'Rails Engine to make internal routes searchable and
discoverable for more than just the name of the route.
All aspects of a route are searchable from the HTTP
verb to the paramters a route supports.'
s.authors = ['Jake Yesbeck']
s.email = '[email protected]'
s.homepage = 'https://github.com/yez/passages'
s.license = 'MIT'
s.require_paths = %w[lib app]
s.files = `git ls-files`.split("\n")
s.test_files = s.files.grep(%r{^spec/})
s.required_ruby_version = '>= 3.1.0'
s.add_dependency 'rails', '~> 7.0'
s.add_development_dependency 'rspec', '~> 3.2'
s.add_development_dependency 'rubocop', '0.49.0'
end