spine-routing 0.3.0 → 0.3.1
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 +4 -0
- data/Gemfile.lock +1 -1
- data/lib/spine/routing/version.rb +1 -1
- data/spec/spine/routing/route_spec.rb +5 -5
- data/spec/spine/routing/router_spec.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fab9b4e5a7bd052b5e0c886f2417fb0e1d83f68
|
4
|
+
data.tar.gz: 72a49ccff7cb24e999687a846d7160f81906709d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd7956fccc6ae0c1d5199ddae14e66e4468ee08bc982976ac4278a5056c88bc3211091c019b409d33630334973b73e16d560d5cd422a735aa8eef2655e0f7dfe
|
7
|
+
data.tar.gz: bb7b12ae54f2ba17ed3de3db5d104350e72c5eb5e32ae1e6b454825355010e3f2adf4f22b26b3cd95c35390cacabaf6b32a2288363bc0fa1fc6ce701b40948a3
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -45,7 +45,7 @@ module Spine
|
|
45
45
|
|
46
46
|
it 'parses variable value' do
|
47
47
|
expect(subject.match(:get, '/testing/1').parameters)
|
48
|
-
.to eql(id
|
48
|
+
.to eql('id' => '1', 'format' => nil)
|
49
49
|
end
|
50
50
|
end
|
51
51
|
|
@@ -54,7 +54,7 @@ module Spine
|
|
54
54
|
|
55
55
|
it 'parses values' do
|
56
56
|
expect(subject.match(:get, '/testing/1').parameters)
|
57
|
-
.to eql(paths
|
57
|
+
.to eql('paths' => 'testing/1', 'format' => nil)
|
58
58
|
end
|
59
59
|
|
60
60
|
describe 'and path variables' do
|
@@ -62,7 +62,7 @@ module Spine
|
|
62
62
|
|
63
63
|
it 'parses values' do
|
64
64
|
expect(subject.match(:get, '/testing/this/is/some/random/stuff/1').parameters)
|
65
|
-
.to eql(paths
|
65
|
+
.to eql('paths' => 'this/is/some/random/stuff', 'action' => 'testing', 'id' => '1', 'format' => nil)
|
66
66
|
end
|
67
67
|
end
|
68
68
|
|
@@ -71,7 +71,7 @@ module Spine
|
|
71
71
|
|
72
72
|
it 'parses variables' do
|
73
73
|
expect(subject.match(:get, '/testing/this/is/some/random/stuff/1').parameters)
|
74
|
-
.to eql(stuff
|
74
|
+
.to eql('stuff' => 'this/is/some/random/stuff', 'action' => 'testing', 'id' => '1', 'format' => nil)
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
@@ -80,7 +80,7 @@ module Spine
|
|
80
80
|
|
81
81
|
it 'parses variables' do
|
82
82
|
expect(subject.match(:get, '/testing/this/is/some/random/stuff').parameters)
|
83
|
-
.to eql(stuff
|
83
|
+
.to eql('stuff' => 'this/is/some/random/stuff', 'action' => 'testing', 'format' => nil)
|
84
84
|
end
|
85
85
|
end
|
86
86
|
end
|
@@ -65,7 +65,7 @@ module Spine
|
|
65
65
|
get('test', to: handler)
|
66
66
|
end
|
67
67
|
expect(subject.recognise(:get, '/level-1/1/test').parameters)
|
68
|
-
.to eql(level_id
|
68
|
+
.to eql('level_id' => '1', 'format' => nil)
|
69
69
|
end
|
70
70
|
|
71
71
|
it 'parses variable scope' do
|
@@ -74,7 +74,7 @@ module Spine
|
|
74
74
|
get('test', to: handler)
|
75
75
|
end
|
76
76
|
expect(subject.recognise(:get, '/1/test').parameters)
|
77
|
-
.to eql(level_id
|
77
|
+
.to eql('level_id' => '1', 'format' => nil)
|
78
78
|
end
|
79
79
|
end
|
80
80
|
end
|