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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b0b4af1297fc05c078970f0aacecd00179de2740
4
- data.tar.gz: 713a8f22eede139cc7577ed5511fc6efdb595992
3
+ metadata.gz: 55bafb8fe57baaf3d499c9c416693680ec738af1
4
+ data.tar.gz: c0ea9a169de6630a47f48760df23f427c7d0d800
5
5
  SHA512:
6
- metadata.gz: 29167c916364a39f208e2026e442217df277678b0fabcbaa3b429bc3896d367003293c33943288429502c5e6c554a2b46d58e05ef9048a52376cfab9ee158775
7
- data.tar.gz: 4cca9e3f93628fb78f0b360a8b15faa3c2075be64e2f1597e91cded81239a73ad0b8ec29483394f66063a450d6031ae46a52373a94b358d078385f5737f66268
6
+ metadata.gz: 18ec32f8f0c9e5c78c40726f4cd84cefa2eadc7bd88b889ed73be94de850ee257faae50534df357ae63e75a0ac5791c9a2c62afe182b793d6e4a717d5106e7ee
7
+ data.tar.gz: b1a9d6f595967e07d3d3eb973f554e786d669c83c71dfd0a69eab3b162ae6c34c0b1096ce324dc182e3755f2b463c07174a3bba69b1a4bae88972a68b154c924
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ Changelog
2
+ =========
3
+
4
+ 0.2.0
5
+ -----
6
+ - Adds Spine::Engines extension
7
+
8
+ 0.1.0
9
+ -----
10
+ - First public release
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
  [![Gem Version](https://badge.fury.io/rb/spine-routing.svg)](http://badge.fury.io/rb/spine-routing)
4
4
  [![Dependency Status](https://gemnasium.com/rspine/routing.svg)](https://gemnasium.com/rspine/routing)
5
+ [![Test Coverage](https://codeclimate.com/github/rspine/routing/badges/coverage.svg)](https://codeclimate.com/github/rspine/routing/coverage)
5
6
  [![Code Climate](https://codeclimate.com/github/rspine/routing/badges/gpa.svg)](https://codeclimate.com/github/rspine/routing)
6
7
  [ ![Codeship Status for rspine/routing](https://codeship.com/projects/f340c940-e121-0132-7351-0acdf541758b/status?branch=master)](https://codeship.com/projects/81073)
7
8
 
@@ -0,0 +1,16 @@
1
+ module Spine
2
+ module Routing
3
+ module Engine
4
+ module Configuration
5
+ def router
6
+ @router ||= Router.new
7
+ end
8
+
9
+ def routes(&block)
10
+ router.configure &block if block_given?
11
+ router
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,14 @@
1
+ module Spine
2
+ module Routing
3
+ module Engine
4
+ module Loader
5
+ extend self
6
+
7
+ def call(app)
8
+ require app.root.join('config', 'routes')
9
+ app.builder.run(app.router)
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Spine
2
2
  module Routing
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
data/lib/spine/routing.rb CHANGED
@@ -9,5 +9,7 @@ module Spine
9
9
  autoload :Verbs, 'spine/routing/syntax/verbs'
10
10
  autoload :Namespacing, 'spine/routing/syntax/namespacing'
11
11
  end
12
+
13
+ autoload :Engine, 'spine/routing/engine'
12
14
  end
13
15
  end
@@ -0,0 +1,4 @@
1
+ require './spec/config/default'
2
+
3
+ require 'codeclimate-test-reporter'
4
+ CodeClimate::TestReporter.start
@@ -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.1.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-20 00:00:00.000000000 Z
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