forked from svenfuchs/routing-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrouting-filter.gemspec
More file actions
29 lines (24 loc) · 1.3 KB
/
routing-filter.gemspec
File metadata and controls
29 lines (24 loc) · 1.3 KB
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
$:.unshift File.expand_path('../lib', __FILE__)
require 'routing_filter/version'
rails_version = ['>= 8.1', '< 9.0']
Gem::Specification.new do |s|
s.name = "routing-filter-codeur"
s.version = RoutingFilter::VERSION
s.license = "MIT"
s.authors = ["Sven Fuchs", 'Codeur']
s.email = ["svenfuchs@artweb-design.de", 'dev@codeur.com']
s.homepage = "http://github.com/codeur/routing-filter"
s.summary = "Routing filters wraps around the complex beast that the Rails routing system is, allowing for unseen flexibility and power in Rails URL recognition and generation"
s.description = "Routing filters wraps around the complex beast that the Rails routing system is, allowing for unseen flexibility and power in Rails URL recognition and generation."
s.files = Dir['CHANGELOG.md', 'README.markdown', 'MIT-LICENSE', 'lib/**/*']
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.required_ruby_version = '>= 2.0'
s.add_dependency 'actionpack', *rails_version
s.add_dependency 'activesupport', *rails_version
s.add_development_dependency 'i18n'
s.add_development_dependency 'test_declarative'
s.add_development_dependency 'rack-test', '~> 0.6.2'
s.add_development_dependency 'rails', *rails_version
s.add_development_dependency 'minitest'
end