traceroute 0.2.2 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in traceroute.gemspec
4
4
  gemspec
data/README.rdoc CHANGED
@@ -10,7 +10,7 @@ This Rake task investigates your Rails 3 application's routes definition, then t
10
10
 
11
11
  == Supported versions
12
12
 
13
- * Ruby 1.8.7, 1.9.2, 1.9.3, 2.0 (trunk)
13
+ * Ruby 1.8.7, 1.9.2, 1.9.3, 2.0, 2.1 (trunk)
14
14
 
15
15
  * Rails 3.0.x, 3.1.x, 3.2.x, 4.0 (edge)
16
16
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Traceroute
2
- VERSION = '0.2.2'
2
+ VERSION = '0.3.0'
3
3
  end
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.2.2
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: 2012-05-15 00:00:00.000000000 Z
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: &70303615304200 !ruby/object:Gem::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: *70303615304200
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: 1.8.16
64
+ rubygems_version: 2.0.0
64
65
  signing_key:
65
- specification_version: 3
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: []