rails-route-checker 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea424b37eac8e092071553a987c58ee05c0fae83
4
- data.tar.gz: 935ad9981a24ff5f65ac447c44dcaacb54d98d32
3
+ metadata.gz: ad69825f00790c2dbac821ca39fc909f3e651e78
4
+ data.tar.gz: b24150ef71ea4f975f1e85e19d18a58c9985a0b2
5
5
  SHA512:
6
- metadata.gz: f8ffc446b5200c1f96c2f1b658ea132ad8aca579b6a2b30a9480c1a49e98504acd10791559aec379b19accf0f88789af7df8d3d2bd5121081289d1c54f3bcd43
7
- data.tar.gz: 49a04e76dde512d40127684c8c0127a216755f32e8240b68de4799b3cc1c6e334b240e850507846500a1840ae76fab419ec71ff5606ae783d777e608d1c2efa2
6
+ metadata.gz: 7e96ff4b2f655d30c21f5aacb947bcc85eb499e983986b35605154cf48664e62d8a2cc0e1745a775624661907c61aab957d967a82aa712fe605a25a951f01e43
7
+ data.tar.gz: 55cf806407c1855d25171ce9c912ec7d2c0db6ea46cf5d4270ad1befbe6f35e241e6ae2ad5c5a8a2cf8f2ec3fbaeba28ace1f999757335ded1273ef1cb95955c
@@ -1,3 +1,3 @@
1
1
  module RailsRouteChecker
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.1.1'.freeze
3
3
  end
@@ -9,17 +9,15 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ['Dave Allie']
10
10
  spec.email = ['dave@daveallie.com']
11
11
 
12
- spec.summary = 'Blah'
13
- spec.description = 'Blah'
12
+ spec.summary = 'A linting tool for your Rails routes'
13
+ spec.description = 'A linting tool that helps you find any routes defined in your routes.rb file that ' \
14
+ "don't have a corresponding controller action, and find any _path or _url calls that don't " \
15
+ 'have a corresponding route in the routes.rb file.'
14
16
  spec.homepage = 'https://github.com/daveallie/rails-route-checker'
15
17
  spec.license = 'MIT'
16
18
 
17
19
  spec.files = Dir['exe/*'] + Dir['lib/**/*'] +
18
- ['Gemfile', 'rails-route-checker.gemspec']
19
-
20
- # `git ls-files -z`.split("\x0").reject do |f|
21
- # f.match(%r{^(test|spec|features)/})
22
- # end
20
+ %w[Gemfile rails-route-checker.gemspec]
23
21
  spec.bindir = 'exe'
24
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
23
  spec.require_paths = ['lib']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-route-checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Allie
@@ -52,7 +52,9 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0.51'
55
- description: Blah
55
+ description: A linting tool that helps you find any routes defined in your routes.rb
56
+ file that don't have a corresponding controller action, and find any _path or _url
57
+ calls that don't have a corresponding route in the routes.rb file.
56
58
  email:
57
59
  - dave@daveallie.com
58
60
  executables:
@@ -92,5 +94,5 @@ rubyforge_project:
92
94
  rubygems_version: 2.6.12
93
95
  signing_key:
94
96
  specification_version: 4
95
- summary: Blah
97
+ summary: A linting tool for your Rails routes
96
98
  test_files: []