spine-routing 0.1.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +10 -0
- data/README.md +1 -0
- data/lib/spine/routing/engine/configuration.rb +16 -0
- data/lib/spine/routing/engine/loader.rb +14 -0
- data/lib/spine/routing/engine.rb +18 -0
- data/lib/spine/routing/version.rb +1 -1
- data/lib/spine/routing.rb +2 -0
- data/spec/config/coverage.rb +4 -0
- data/spine-routing.gemspec +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55bafb8fe57baaf3d499c9c416693680ec738af1
|
4
|
+
data.tar.gz: c0ea9a169de6630a47f48760df23f427c7d0d800
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18ec32f8f0c9e5c78c40726f4cd84cefa2eadc7bd88b889ed73be94de850ee257faae50534df357ae63e75a0ac5791c9a2c62afe182b793d6e4a717d5106e7ee
|
7
|
+
data.tar.gz: b1a9d6f595967e07d3d3eb973f554e786d669c83c71dfd0a69eab3b162ae6c34c0b1096ce324dc182e3755f2b463c07174a3bba69b1a4bae88972a68b154c924
|
data/CHANGELOG.md
ADDED
data/Gemfile.lock
CHANGED
@@ -7,7 +7,11 @@ PATH
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
+
codeclimate-test-reporter (0.4.7)
|
11
|
+
simplecov (>= 0.7.1, < 1.0.0)
|
10
12
|
diff-lcs (1.2.5)
|
13
|
+
docile (1.1.5)
|
14
|
+
json (1.8.2)
|
11
15
|
rack (1.6.1)
|
12
16
|
rake (10.4.2)
|
13
17
|
rspec (3.2.0)
|
@@ -23,12 +27,18 @@ GEM
|
|
23
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
24
28
|
rspec-support (~> 3.2.0)
|
25
29
|
rspec-support (3.2.2)
|
30
|
+
simplecov (0.10.0)
|
31
|
+
docile (~> 1.1.0)
|
32
|
+
json (~> 1.8)
|
33
|
+
simplecov-html (~> 0.10.0)
|
34
|
+
simplecov-html (0.10.0)
|
26
35
|
|
27
36
|
PLATFORMS
|
28
37
|
ruby
|
29
38
|
|
30
39
|
DEPENDENCIES
|
31
40
|
bundler (~> 1.7)
|
41
|
+
codeclimate-test-reporter (~> 0.4)
|
32
42
|
rake (~> 10.0)
|
33
43
|
rspec (~> 3.2)
|
34
44
|
spine-routing!
|
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
[](http://badge.fury.io/rb/spine-routing)
|
4
4
|
[](https://gemnasium.com/rspine/routing)
|
5
|
+
[](https://codeclimate.com/github/rspine/routing/coverage)
|
5
6
|
[](https://codeclimate.com/github/rspine/routing)
|
6
7
|
[ ](https://codeship.com/projects/81073)
|
7
8
|
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Spine
|
2
|
+
module Routing
|
3
|
+
module Engine
|
4
|
+
autoload :Configuration, 'spine/routing/engine/configuration'
|
5
|
+
autoload :Loader, 'spine/routing/engine/loader'
|
6
|
+
|
7
|
+
extend self
|
8
|
+
|
9
|
+
def configuration
|
10
|
+
Configuration
|
11
|
+
end
|
12
|
+
|
13
|
+
def loader
|
14
|
+
Loader
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/spine/routing.rb
CHANGED
data/spine-routing.gemspec
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# coding: utf-8
|
2
1
|
lib = File.expand_path('../lib', __FILE__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require 'spine/routing/version'
|
@@ -23,4 +22,5 @@ Gem::Specification.new do |spec|
|
|
23
22
|
spec.add_development_dependency 'bundler', "~> 1.7"
|
24
23
|
spec.add_development_dependency 'rake', "~> 10.0"
|
25
24
|
spec.add_development_dependency 'rspec', "~> 3.2"
|
25
|
+
spec.add_development_dependency 'codeclimate-test-reporter', "~> 0.4"
|
26
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spine-routing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TOGGL LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: codeclimate-test-reporter
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.4'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.4'
|
69
83
|
description: ''
|
70
84
|
email:
|
71
85
|
- support@toggl.com
|
@@ -75,12 +89,16 @@ extra_rdoc_files: []
|
|
75
89
|
files:
|
76
90
|
- ".gitignore"
|
77
91
|
- ".rspec"
|
92
|
+
- CHANGELOG.md
|
78
93
|
- Gemfile
|
79
94
|
- Gemfile.lock
|
80
95
|
- LICENSE
|
81
96
|
- README.md
|
82
97
|
- Rakefile
|
83
98
|
- lib/spine/routing.rb
|
99
|
+
- lib/spine/routing/engine.rb
|
100
|
+
- lib/spine/routing/engine/configuration.rb
|
101
|
+
- lib/spine/routing/engine/loader.rb
|
84
102
|
- lib/spine/routing/nested_router.rb
|
85
103
|
- lib/spine/routing/route.rb
|
86
104
|
- lib/spine/routing/router.rb
|
@@ -88,6 +106,7 @@ files:
|
|
88
106
|
- lib/spine/routing/syntax/namespacing.rb
|
89
107
|
- lib/spine/routing/syntax/verbs.rb
|
90
108
|
- lib/spine/routing/version.rb
|
109
|
+
- spec/config/coverage.rb
|
91
110
|
- spec/config/default.rb
|
92
111
|
- spec/spine/routing/route_spec.rb
|
93
112
|
- spec/spine/routing/router_spec.rb
|
@@ -117,6 +136,7 @@ signing_key:
|
|
117
136
|
specification_version: 4
|
118
137
|
summary: Rack router
|
119
138
|
test_files:
|
139
|
+
- spec/config/coverage.rb
|
120
140
|
- spec/config/default.rb
|
121
141
|
- spec/spine/routing/route_spec.rb
|
122
142
|
- spec/spine/routing/router_spec.rb
|