forked from svenfuchs/routing-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouting-filter.gemspec
23 lines (19 loc) · 1.03 KB
/
routing-filter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.unshift File.expand_path('../lib', __FILE__)
require 'routing_filter/version'
Gem::Specification.new do |s|
s.name = "routing-filter"
s.version = RoutingFilter::VERSION
s.authors = ["Sven Fuchs"]
s.email = "[email protected]"
s.homepage = "http://github.com/svenfuchs/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.rubyforge_project = '[none]'
s.add_dependency 'actionpack'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'i18n'
s.add_development_dependency 'test_declarative'
end