spine-routing 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +36 -0
- data/.rspec +3 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +34 -0
- data/LICENSE +12 -0
- data/README.md +35 -0
- data/Rakefile +1 -0
- data/lib/spine/routing.rb +13 -0
- data/lib/spine/routing/nested_router.rb +20 -0
- data/lib/spine/routing/route.rb +61 -0
- data/lib/spine/routing/router.rb +68 -0
- data/lib/spine/routing/syntax/match.rb +11 -0
- data/lib/spine/routing/syntax/namespacing.rb +13 -0
- data/lib/spine/routing/syntax/verbs.rb +27 -0
- data/lib/spine/routing/version.rb +5 -0
- data/spec/config/default.rb +20 -0
- data/spec/spine/routing/route_spec.rb +89 -0
- data/spec/spine/routing/router_spec.rb +81 -0
- data/spine-routing.gemspec +26 -0
- metadata +122 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b0b4af1297fc05c078970f0aacecd00179de2740
|
4
|
+
data.tar.gz: 713a8f22eede139cc7577ed5511fc6efdb595992
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 29167c916364a39f208e2026e442217df277678b0fabcbaa3b429bc3896d367003293c33943288429502c5e6c554a2b46d58e05ef9048a52376cfab9ee158775
|
7
|
+
data.tar.gz: 4cca9e3f93628fb78f0b360a8b15faa3c2075be64e2f1597e91cded81239a73ad0b8ec29483394f66063a450d6031ae46a52373a94b358d078385f5737f66268
|
data/.gitignore
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/test/tmp/
|
9
|
+
/test/version_tmp/
|
10
|
+
/tmp/
|
11
|
+
|
12
|
+
## Specific to RubyMotion:
|
13
|
+
.dat*
|
14
|
+
.repl_history
|
15
|
+
build/
|
16
|
+
|
17
|
+
## Documentation cache and generated files:
|
18
|
+
/.yardoc/
|
19
|
+
/_yardoc/
|
20
|
+
/doc/
|
21
|
+
/rdoc/
|
22
|
+
|
23
|
+
## Environment normalisation:
|
24
|
+
/bin/
|
25
|
+
/.bundle/
|
26
|
+
/vendor/bundle
|
27
|
+
/lib/bundler/man/
|
28
|
+
|
29
|
+
# for a library or gem, you might want to ignore these files since the code is
|
30
|
+
# intended to run in multiple environments; otherwise, check them in:
|
31
|
+
# Gemfile.lock
|
32
|
+
# .ruby-version
|
33
|
+
# .ruby-gemset
|
34
|
+
|
35
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
36
|
+
.rvmrc
|
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
spine-routing (0.1.0)
|
5
|
+
rack (~> 1.6)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
diff-lcs (1.2.5)
|
11
|
+
rack (1.6.1)
|
12
|
+
rake (10.4.2)
|
13
|
+
rspec (3.2.0)
|
14
|
+
rspec-core (~> 3.2.0)
|
15
|
+
rspec-expectations (~> 3.2.0)
|
16
|
+
rspec-mocks (~> 3.2.0)
|
17
|
+
rspec-core (3.2.3)
|
18
|
+
rspec-support (~> 3.2.0)
|
19
|
+
rspec-expectations (3.2.1)
|
20
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
21
|
+
rspec-support (~> 3.2.0)
|
22
|
+
rspec-mocks (3.2.1)
|
23
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
24
|
+
rspec-support (~> 3.2.0)
|
25
|
+
rspec-support (3.2.2)
|
26
|
+
|
27
|
+
PLATFORMS
|
28
|
+
ruby
|
29
|
+
|
30
|
+
DEPENDENCIES
|
31
|
+
bundler (~> 1.7)
|
32
|
+
rake (~> 10.0)
|
33
|
+
rspec (~> 3.2)
|
34
|
+
spine-routing!
|
data/LICENSE
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
Copyright (c) 2015, TOGGL LLC
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
5
|
+
|
6
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
7
|
+
|
8
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
9
|
+
|
10
|
+
3. Neither the name of the TOGGL LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
11
|
+
|
12
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# Spine::Routing
|
2
|
+
|
3
|
+
[](http://badge.fury.io/rb/spine-routing)
|
4
|
+
[](https://gemnasium.com/rspine/routing)
|
5
|
+
[](https://codeclimate.com/github/rspine/routing)
|
6
|
+
[ ](https://codeship.com/projects/81073)
|
7
|
+
|
8
|
+
Router for Rack application. Supports scopes, path parameters and HTTP verbs
|
9
|
+
(GET, POST, PUT, PATCH, DELETE).
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
To install it, add the gem to your Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'spine-routing'
|
17
|
+
```
|
18
|
+
|
19
|
+
Then run `bundle`. If you're not using Bundler, just `gem install spine-routing`.
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
router = Spine::Routing::Router.new
|
25
|
+
router.configure do
|
26
|
+
scope :users do
|
27
|
+
get '', to: Users::List
|
28
|
+
post ':id', to: Users::Add
|
29
|
+
end
|
30
|
+
|
31
|
+
get :status, to: -> (env) { [200, {}, []] }
|
32
|
+
end
|
33
|
+
|
34
|
+
router.call(env)
|
35
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module Spine
|
2
|
+
module Routing
|
3
|
+
autoload :Route, 'spine/routing/route'
|
4
|
+
autoload :Router, 'spine/routing/router'
|
5
|
+
autoload :NestedRouter, 'spine/routing/nested_router'
|
6
|
+
|
7
|
+
module Syntax
|
8
|
+
autoload :Match, 'spine/routing/syntax/match'
|
9
|
+
autoload :Verbs, 'spine/routing/syntax/verbs'
|
10
|
+
autoload :Namespacing, 'spine/routing/syntax/namespacing'
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Spine
|
2
|
+
module Routing
|
3
|
+
class NestedRouter < Router
|
4
|
+
attr_reader :parent
|
5
|
+
|
6
|
+
def initialize(path, parent)
|
7
|
+
@path = path
|
8
|
+
@parent = parent
|
9
|
+
end
|
10
|
+
|
11
|
+
def add(route)
|
12
|
+
parent.add(route)
|
13
|
+
end
|
14
|
+
|
15
|
+
def build(pattern, options)
|
16
|
+
parent.build([@path, normalize_path(pattern)].join, options)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require 'delegate'
|
2
|
+
|
3
|
+
module Spine
|
4
|
+
module Routing
|
5
|
+
class Route
|
6
|
+
VARIABLES_PATTERN = /\:([a-zA-Z0-9_-]+)/.freeze
|
7
|
+
WILDCARD_PATTERN = /\*([a-zA-Z0-9_-]+)/.freeze
|
8
|
+
EMPTY_WILDCARD_PATTERN = /\*(\/|\Z)/.freeze
|
9
|
+
|
10
|
+
attr_reader :name, :pattern, :app, :verb
|
11
|
+
|
12
|
+
def initialize(name, pattern, app, verb)
|
13
|
+
@name = name
|
14
|
+
@pattern = pattern
|
15
|
+
@app = app
|
16
|
+
@verb = verb
|
17
|
+
end
|
18
|
+
|
19
|
+
def match(verb, path)
|
20
|
+
return nil unless verb == self.verb
|
21
|
+
|
22
|
+
matches = path.match(regex)
|
23
|
+
return nil unless matches
|
24
|
+
|
25
|
+
Match.new(self, Hash[matches.names.map(&:to_sym).zip(matches.captures)])
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def regex
|
31
|
+
@regex ||= compile
|
32
|
+
end
|
33
|
+
|
34
|
+
def compile
|
35
|
+
Regexp.new("\\A#{ prepare }\/?\\Z")
|
36
|
+
end
|
37
|
+
|
38
|
+
def prepare
|
39
|
+
add_format(
|
40
|
+
pattern
|
41
|
+
.gsub(EMPTY_WILDCARD_PATTERN, '*paths\1')
|
42
|
+
.gsub(WILDCARD_PATTERN,'(?<\1>[^.$]+)')
|
43
|
+
.gsub(VARIABLES_PATTERN, '(?<\1>[^./$]+)')
|
44
|
+
)
|
45
|
+
end
|
46
|
+
|
47
|
+
def add_format(path)
|
48
|
+
path + '(?:\.(?<format>.*))?'
|
49
|
+
end
|
50
|
+
|
51
|
+
class Match < SimpleDelegator
|
52
|
+
attr_reader :parameters
|
53
|
+
|
54
|
+
def initialize(route, parameters)
|
55
|
+
super(route)
|
56
|
+
@parameters = parameters
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
module Spine
|
2
|
+
module Routing
|
3
|
+
class Router
|
4
|
+
include Syntax::Match
|
5
|
+
include Syntax::Verbs
|
6
|
+
include Syntax::Namespacing
|
7
|
+
|
8
|
+
VERB = 'REQUEST_METHOD'.freeze
|
9
|
+
PATH = 'PATH_INFO'.freeze
|
10
|
+
PATH_PARAMETERS = 'router.parameters'.freeze
|
11
|
+
NOT_FOUND_RESPONSE = [404, {}, ['']].freeze
|
12
|
+
|
13
|
+
|
14
|
+
def routes
|
15
|
+
@routes ||= [] # TODO: use set instead of array
|
16
|
+
end
|
17
|
+
|
18
|
+
def build(pattern, options)
|
19
|
+
Route.new(
|
20
|
+
'',
|
21
|
+
normalize_path(pattern),
|
22
|
+
options.fetch(:to),
|
23
|
+
options.fetch(:verb)
|
24
|
+
)
|
25
|
+
end
|
26
|
+
|
27
|
+
def configure(&block)
|
28
|
+
instance_eval &block
|
29
|
+
end
|
30
|
+
|
31
|
+
def add(route)
|
32
|
+
routes << route
|
33
|
+
end
|
34
|
+
|
35
|
+
def recognise(verb, path)
|
36
|
+
routes.each do |route|
|
37
|
+
match = route.match(verb, path)
|
38
|
+
return match if match
|
39
|
+
end
|
40
|
+
nil
|
41
|
+
end
|
42
|
+
|
43
|
+
def call(env)
|
44
|
+
verb = env[VERB].downcase.gsub('head', 'get').to_sym
|
45
|
+
route = recognise(verb, env[PATH])
|
46
|
+
if route
|
47
|
+
env[PATH_PARAMETERS] = route.parameters
|
48
|
+
run(route.app, env)
|
49
|
+
else
|
50
|
+
NOT_FOUND_RESPONSE # TODO: set default app
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def run(app, env)
|
55
|
+
app.call(env)
|
56
|
+
end
|
57
|
+
|
58
|
+
protected
|
59
|
+
|
60
|
+
def normalize_path(path)
|
61
|
+
'/' + path.split('/')
|
62
|
+
.map(&:strip)
|
63
|
+
.select { |part| part && part != '' }
|
64
|
+
.join('/')
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Spine
|
2
|
+
module Routing
|
3
|
+
module Syntax
|
4
|
+
module Verbs
|
5
|
+
def get(pattern, options)
|
6
|
+
match(pattern, options.merge(verb: :get))
|
7
|
+
end
|
8
|
+
|
9
|
+
def post(pattern, options)
|
10
|
+
match(pattern, options.merge(verb: :post))
|
11
|
+
end
|
12
|
+
|
13
|
+
def put(pattern, options)
|
14
|
+
match(pattern, options.merge(verb: :put))
|
15
|
+
end
|
16
|
+
|
17
|
+
def patch(pattern, options)
|
18
|
+
match(pattern, options.merge(verb: :patch))
|
19
|
+
end
|
20
|
+
|
21
|
+
def delete(pattern, options)
|
22
|
+
match(pattern, options.merge(verb: :delete))
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
RSpec.configure do |config|
|
2
|
+
config.filter_run :focus
|
3
|
+
config.run_all_when_everything_filtered = true
|
4
|
+
|
5
|
+
if config.files_to_run.one?
|
6
|
+
config.default_formatter = 'doc'
|
7
|
+
end
|
8
|
+
|
9
|
+
config.order = :random
|
10
|
+
|
11
|
+
Kernel.srand config.seed
|
12
|
+
|
13
|
+
config.expect_with :rspec do |expectations|
|
14
|
+
expectations.syntax = :expect
|
15
|
+
end
|
16
|
+
|
17
|
+
config.mock_with :rspec do |mocks|
|
18
|
+
mocks.syntax = :expect
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
require 'spine/routing'
|
2
|
+
|
3
|
+
module Spine
|
4
|
+
module Routing
|
5
|
+
# TODO:
|
6
|
+
# * variables constraints
|
7
|
+
|
8
|
+
describe Route do
|
9
|
+
subject { Route.new('test', '/testing', handler, :get) }
|
10
|
+
|
11
|
+
let(:handler) { double }
|
12
|
+
|
13
|
+
it 'has name' do
|
14
|
+
expect(subject.name).to eql('test')
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'has pattern' do
|
18
|
+
expect(subject.pattern).to eql('/testing')
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'has app' do
|
22
|
+
expect(subject.app).to be
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'has verb' do
|
26
|
+
expect(subject.verb).to eql(:get)
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'when matching route' do
|
30
|
+
it 'matches route' do
|
31
|
+
expect(subject.match(:get, '/testing')).to be
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'do not match route' do
|
35
|
+
expect(subject.match(:get, '/testing1')).not_to be
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'do not match route with different verb' do
|
39
|
+
expect(subject.match(:post, '/testing')).not_to be
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe 'when extracting path variables' do
|
44
|
+
subject { Route.new('test', '/testing/:id', handler, :get) }
|
45
|
+
|
46
|
+
it 'parses variable value' do
|
47
|
+
expect(subject.match(:get, '/testing/1').parameters)
|
48
|
+
.to eql(id: '1', format: nil)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'when extracting wildcard variables' do
|
53
|
+
subject { Route.new('test', '/*', handler, :get) }
|
54
|
+
|
55
|
+
it 'parses values' do
|
56
|
+
expect(subject.match(:get, '/testing/1').parameters)
|
57
|
+
.to eql(paths: 'testing/1', format: nil)
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'and path variables' do
|
61
|
+
subject { Route.new('test', '/:action/*/:id', handler, :get) }
|
62
|
+
|
63
|
+
it 'parses values' do
|
64
|
+
expect(subject.match(:get, '/testing/this/is/some/random/stuff/1').parameters)
|
65
|
+
.to eql(paths: 'this/is/some/random/stuff', action: 'testing', id: '1', format: nil)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'and path variables and wildcard is named' do
|
70
|
+
subject { Route.new('test', '/:action/*stuff/:id', handler, :get) }
|
71
|
+
|
72
|
+
it 'parses variables' do
|
73
|
+
expect(subject.match(:get, '/testing/this/is/some/random/stuff/1').parameters)
|
74
|
+
.to eql(stuff: 'this/is/some/random/stuff', action: 'testing', id: '1', format: nil)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'and path variables and wildcard at the end' do
|
79
|
+
subject { Route.new('test', '/:action/*stuff', handler, :get) }
|
80
|
+
|
81
|
+
it 'parses variables' do
|
82
|
+
expect(subject.match(:get, '/testing/this/is/some/random/stuff').parameters)
|
83
|
+
.to eql(stuff: 'this/is/some/random/stuff', action: 'testing', format: nil)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
require 'spine/routing'
|
2
|
+
|
3
|
+
module Spine
|
4
|
+
module Routing
|
5
|
+
describe Router do
|
6
|
+
let(:handler) { double }
|
7
|
+
|
8
|
+
it 'has routes' do
|
9
|
+
expect(subject.routes).to be
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'adds route by get verb' do
|
13
|
+
subject.get('/', to: handler)
|
14
|
+
expect(subject.routes.size).to eql(1)
|
15
|
+
expect(subject.routes.first.verb).to eql(:get)
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'adds route by post verb' do
|
19
|
+
subject.post('/', to: handler)
|
20
|
+
expect(subject.routes.size).to eql(1)
|
21
|
+
expect(subject.routes.first.verb).to eql(:post)
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'adds route by put verb' do
|
25
|
+
subject.put('/', to: handler)
|
26
|
+
expect(subject.routes.size).to eql(1)
|
27
|
+
expect(subject.routes.first.verb).to eql(:put)
|
28
|
+
end
|
29
|
+
|
30
|
+
it 'adds route by patch verb' do
|
31
|
+
subject.patch('/', to: handler)
|
32
|
+
expect(subject.routes.size).to eql(1)
|
33
|
+
expect(subject.routes.first.verb).to eql(:patch)
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'adds route by delete verb' do
|
37
|
+
subject.delete('/', to: handler)
|
38
|
+
expect(subject.routes.size).to eql(1)
|
39
|
+
expect(subject.routes.first.verb).to eql(:delete)
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'adds route in scope' do
|
43
|
+
handler = double
|
44
|
+
subject.scope('level-1') do
|
45
|
+
get('test', to: handler)
|
46
|
+
end
|
47
|
+
expect(subject.routes.size).to eql(1)
|
48
|
+
expect(subject.routes.first.pattern).to eql('/level-1/test')
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'adds route in multiple scopes' do
|
52
|
+
handler = double
|
53
|
+
subject.scope('level-1') do
|
54
|
+
scope('level-2') do
|
55
|
+
get('test', to: handler)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
expect(subject.routes.size).to eql(1)
|
59
|
+
expect(subject.routes.first.pattern).to eql('/level-1/level-2/test')
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'parses variable from scope' do
|
63
|
+
handler = double
|
64
|
+
subject.scope('level-1/:level_id') do
|
65
|
+
get('test', to: handler)
|
66
|
+
end
|
67
|
+
expect(subject.recognise(:get, '/level-1/1/test').parameters)
|
68
|
+
.to eql(level_id: '1', format: nil)
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'parses variable scope' do
|
72
|
+
handler = double
|
73
|
+
subject.scope(':level_id') do
|
74
|
+
get('test', to: handler)
|
75
|
+
end
|
76
|
+
expect(subject.recognise(:get, '/1/test').parameters)
|
77
|
+
.to eql(level_id: '1', format: nil)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'spine/routing/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "spine-routing"
|
8
|
+
spec.version = Spine::Routing::VERSION
|
9
|
+
spec.authors = ["TOGGL LLC"]
|
10
|
+
spec.email = ["support@toggl.com"]
|
11
|
+
spec.summary = 'Rack router'
|
12
|
+
spec.description = ''
|
13
|
+
spec.homepage = 'https://github.com/rspine/routing'
|
14
|
+
spec.license = 'BSD-3-Clause'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'rack', "~> 1.6"
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', "~> 1.7"
|
24
|
+
spec.add_development_dependency 'rake', "~> 10.0"
|
25
|
+
spec.add_development_dependency 'rspec', "~> 3.2"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: spine-routing
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- TOGGL LLC
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-05-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rack
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.7'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.2'
|
69
|
+
description: ''
|
70
|
+
email:
|
71
|
+
- support@toggl.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- Gemfile
|
79
|
+
- Gemfile.lock
|
80
|
+
- LICENSE
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- lib/spine/routing.rb
|
84
|
+
- lib/spine/routing/nested_router.rb
|
85
|
+
- lib/spine/routing/route.rb
|
86
|
+
- lib/spine/routing/router.rb
|
87
|
+
- lib/spine/routing/syntax/match.rb
|
88
|
+
- lib/spine/routing/syntax/namespacing.rb
|
89
|
+
- lib/spine/routing/syntax/verbs.rb
|
90
|
+
- lib/spine/routing/version.rb
|
91
|
+
- spec/config/default.rb
|
92
|
+
- spec/spine/routing/route_spec.rb
|
93
|
+
- spec/spine/routing/router_spec.rb
|
94
|
+
- spine-routing.gemspec
|
95
|
+
homepage: https://github.com/rspine/routing
|
96
|
+
licenses:
|
97
|
+
- BSD-3-Clause
|
98
|
+
metadata: {}
|
99
|
+
post_install_message:
|
100
|
+
rdoc_options: []
|
101
|
+
require_paths:
|
102
|
+
- lib
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
requirements: []
|
114
|
+
rubyforge_project:
|
115
|
+
rubygems_version: 2.4.5
|
116
|
+
signing_key:
|
117
|
+
specification_version: 4
|
118
|
+
summary: Rack router
|
119
|
+
test_files:
|
120
|
+
- spec/config/default.rb
|
121
|
+
- spec/spine/routing/route_spec.rb
|
122
|
+
- spec/spine/routing/router_spec.rb
|