traceroute 0.2.2 → 0.3.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 +7 -0
- data/Gemfile +1 -1
- data/README.rdoc +1 -1
- data/lib/tasks/traceroute.rake +1 -1
- data/lib/traceroute/version.rb +1 -1
- metadata +14 -13
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 25f82c67be02c675044f71eb41df6524599e479a
|
|
4
|
+
data.tar.gz: 68ab012a63518d6737521c40d6247e41acdd1002
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 171891b307a39d6e9e9a70c30716806bb1950ac52105dbe3361f7a36540713b309837fb2c5a190bd142ce9837052f8faf0ca5f9eeaee5cb70b7b885d18fa1c38
|
|
7
|
+
data.tar.gz: bcdbf583a1d7469f6a8b6f18be43d225d57de4fa1aa2adbbc3edc9e428748aee5eb62b4b49e0604fb85086f86d162c31678fec68dfef80f00d25a1f963343ec7
|
data/Gemfile
CHANGED
data/README.rdoc
CHANGED
data/lib/tasks/traceroute.rake
CHANGED
|
@@ -9,7 +9,7 @@ task :traceroute => :environment do
|
|
|
9
9
|
exclusion_regexp = %r{/rails/info/properties|^#{Rails.application.config.assets.prefix}}
|
|
10
10
|
|
|
11
11
|
routes.reject! do |route|
|
|
12
|
-
path = defined?(Journey::Route) ? route.path.spec.to_s : route.path
|
|
12
|
+
path = (defined?(ActionDispatch::Journey::Route) || defined?(Journey::Route)) ? route.path.spec.to_s : route.path
|
|
13
13
|
path =~ exclusion_regexp
|
|
14
14
|
end
|
|
15
15
|
end
|
data/lib/traceroute/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: traceroute
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.3.0
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Akira Matsuda
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2013-04-15 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rails
|
|
16
|
-
requirement:
|
|
17
|
-
none: false
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - '>='
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: 3.0.0
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.0.0
|
|
25
27
|
description: This Rake task investigates the application's routes definition, then
|
|
26
28
|
tells you unused routes and unreachable action methods
|
|
27
29
|
email:
|
|
@@ -42,27 +44,26 @@ files:
|
|
|
42
44
|
homepage: https://github.com/amatsuda/traceroute
|
|
43
45
|
licenses:
|
|
44
46
|
- MIT
|
|
47
|
+
metadata: {}
|
|
45
48
|
post_install_message:
|
|
46
49
|
rdoc_options: []
|
|
47
50
|
require_paths:
|
|
48
51
|
- lib
|
|
49
52
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
|
-
none: false
|
|
51
53
|
requirements:
|
|
52
|
-
- -
|
|
54
|
+
- - '>='
|
|
53
55
|
- !ruby/object:Gem::Version
|
|
54
56
|
version: '0'
|
|
55
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
-
none: false
|
|
57
58
|
requirements:
|
|
58
|
-
- -
|
|
59
|
+
- - '>='
|
|
59
60
|
- !ruby/object:Gem::Version
|
|
60
61
|
version: '0'
|
|
61
62
|
requirements: []
|
|
62
63
|
rubyforge_project: traceroute
|
|
63
|
-
rubygems_version:
|
|
64
|
+
rubygems_version: 2.0.0
|
|
64
65
|
signing_key:
|
|
65
|
-
specification_version:
|
|
66
|
+
specification_version: 4
|
|
66
67
|
summary: A Rake task that helps you find the dead routes and actions for your Rails
|
|
67
68
|
3 app
|
|
68
69
|
test_files: []
|