router-visualizer 1.0.1 → 1.0.2
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/lib/router-visualizer/version.rb +2 -2
- data/readme.md +2 -2
- data/router-visualizer.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 154c9d5561a9e432956a6cbc0217f2a344f51b5f
|
|
4
|
+
data.tar.gz: db9a9a27bfe826601649feaeb8dc816773575077
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07847ddb07d608f8ab781993646137d55cb255aa9bdc2acf52357995fd1d288e0c17af2028be7ca2803c6d24168f673d18f0dd65a483da772f224eea7c512428
|
|
7
|
+
data.tar.gz: a7db310a33d7321f8e1b640a3111b57eeacd3a01da41ce86b178d147a24da0d4a781492448fb10eacee7c0fadc0e25a7a5b67d26311ace6c54bff3b46cd60e71
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module RouterVisualizer
|
|
2
|
-
VERSION = "1.0.
|
|
3
|
-
end
|
|
2
|
+
VERSION = "1.0.2"
|
|
3
|
+
end
|
data/readme.md
CHANGED
|
@@ -48,7 +48,7 @@ Rails.application.routes.draw do
|
|
|
48
48
|
end
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
By default, the visualization route will only be defined in development. If for some reason you want the route to be defined in other environments, you can use `groups` option:
|
|
51
|
+
By default, the visualization route will only be defined in development. If for some reason you want the route to be defined in other environments, you can use the `groups` option:
|
|
52
52
|
|
|
53
53
|
```ruby
|
|
54
54
|
Rails.application.routes.draw do
|
|
@@ -85,4 +85,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
85
85
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
86
86
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
87
87
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
88
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
88
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/router-visualizer.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
|
|
|
9
9
|
gem.version = RouterVisualizer::VERSION
|
|
10
10
|
gem.authors = ["Joseph Tibbertsma"]
|
|
11
11
|
gem.email = ["josephtibbertsma@gmail.com"]
|
|
12
|
-
gem.description = "Shows
|
|
12
|
+
gem.description = "Shows an NFA visualization of a rails application's router"
|
|
13
13
|
gem.summary = gem.description
|
|
14
14
|
gem.homepage = "https://github.com/jtibbertsma/router-visualizer"
|
|
15
15
|
gem.license = 'MIT'
|
|
@@ -18,4 +18,4 @@ Gem::Specification.new do |gem|
|
|
|
18
18
|
gem.require_paths = ['lib']
|
|
19
19
|
|
|
20
20
|
gem.add_dependency 'rails', '>= 4.0'
|
|
21
|
-
end
|
|
21
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: router-visualizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joseph Tibbertsma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -24,7 +24,7 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '4.0'
|
|
27
|
-
description: Shows
|
|
27
|
+
description: Shows an NFA visualization of a rails application's router
|
|
28
28
|
email:
|
|
29
29
|
- josephtibbertsma@gmail.com
|
|
30
30
|
executables: []
|
|
@@ -68,5 +68,5 @@ rubyforge_project:
|
|
|
68
68
|
rubygems_version: 2.4.5.1
|
|
69
69
|
signing_key:
|
|
70
70
|
specification_version: 4
|
|
71
|
-
summary: Shows
|
|
71
|
+
summary: Shows an NFA visualization of a rails application's router
|
|
72
72
|
test_files: []
|