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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4becea9a7a3f05d9ce9bb4e701ef75f5619b0d26
4
- data.tar.gz: 0a97bd8d1c089ffff56be59b8b2d15d059b54b73
3
+ metadata.gz: 3fab9b4e5a7bd052b5e0c886f2417fb0e1d83f68
4
+ data.tar.gz: 72a49ccff7cb24e999687a846d7160f81906709d
5
5
  SHA512:
6
- metadata.gz: f093bec4d1ba84766c98451cfb92b34aee7a1e488ff3ab01f73cb17c265bf1f89e8e830e14751e442702ed001401b8794015910635f03b4680b0f3408c1d072f
7
- data.tar.gz: 6fa34127dc338c4026b071e2d9335da0172935712162caff35efb521be9ee38c4189c870946200958a15f6a126992fe4f889b125d62d768049b7e55ce66a7dcf
6
+ metadata.gz: dd7956fccc6ae0c1d5199ddae14e66e4468ee08bc982976ac4278a5056c88bc3211091c019b409d33630334973b73e16d560d5cd422a735aa8eef2655e0f7dfe
7
+ data.tar.gz: bb7b12ae54f2ba17ed3de3db5d104350e72c5eb5e32ae1e6b454825355010e3f2adf4f22b26b3cd95c35390cacabaf6b32a2288363bc0fa1fc6ce701b40948a3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 0.3.1
5
+ -----
6
+ - Fixes specs.
7
+
4
8
  0.3.0
5
9
  -----
6
10
  - Merges all parameters to Rack environment
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- spine-routing (0.1.0)
4
+ spine-routing (0.3.1)
5
5
  rack (~> 1.6)
6
6
 
7
7
  GEM
@@ -1,5 +1,5 @@
1
1
  module Spine
2
2
  module Routing
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
@@ -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: '1', format: nil)
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: 'testing/1', format: nil)
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: 'this/is/some/random/stuff', action: 'testing', id: '1', format: nil)
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: 'this/is/some/random/stuff', action: 'testing', id: '1', format: nil)
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: 'this/is/some/random/stuff', action: 'testing', format: nil)
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: '1', format: nil)
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: '1', format: nil)
77
+ .to eql('level_id' => '1', 'format' => nil)
78
78
  end
79
79
  end
80
80
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spine-routing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TOGGL LLC