forked from eliotsykes/rails-static-router
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rails-static-router.gemspec
38 lines (33 loc) · 1.53 KB
/
rails-static-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
33
34
35
36
37
38
lib = File.expand_path('./lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rails_static_router/version'
Gem::Specification.new do |spec|
spec.authors = ['Eliot Sykes', 'Muhammad Mufid Afif']
spec.description = 'Enjoy static routes in your Rails `config/routes.rb`'
spec.email = ['[email protected]']
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('spec/') }
spec.homepage = 'https://github.com/mufid/rails-static-router'
spec.licenses = %w[MIT]
spec.name = 'rails-static-router'
spec.require_paths = %w[lib]
spec.summary = spec.description
spec.version = RailsStaticRouter::VERSION
spec.add_dependency 'railties', '>= 5.0', '< 7.1'
# Test and build tools
# The test shouldn't broken by the incompatible RSpec version.
# Thus, we need to lock the version.
spec.add_development_dependency "appraisal"
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'simplecov-html'
# Docs, debugger, linter.
# We don't need to specify the lock version for these documentation
# Please do adjust our program so that it will always compatible
# with the latest version of these dependencies
spec.add_development_dependency 'maruku'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'reek'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'yard'
end