restful_routing 1.0.2 → 1.0.3

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: 192d6ed6764afadba42dc459209360fef12e8a9f
4
- data.tar.gz: 57b5fb2869058ca2246d97f5a40e00c9fd4f40d8
3
+ metadata.gz: 16ac175dad3e4e2495bb9b2998f008d09609a073
4
+ data.tar.gz: ea8cf19ae0b0a5a52663dfbf57bb451b354a614c
5
5
  SHA512:
6
- metadata.gz: e95b66816af715af7a627eebe964f1acd2681ae636f201e9b487ef9d2e9f7f423ae67194d3ccd6c9316d14c00715f6c5c9205388ae16278ce52d25af952976c5
7
- data.tar.gz: 64d622b3c1b2db5b2ca14a22aff2bcf3801f19d5eba37c54f6aff20da754947dd48850786f20c0c34a10a3e5b6322e5935955446108ec34366c2d62532407186
6
+ metadata.gz: 8616d8a653edc6f1f94b034a3ae22507aea2ed532533a505f8d107b2fe2cda1dff953bac8cd69cf6bb9281be7596206b23931e58eda18f035a5a49ca2dc77a64
7
+ data.tar.gz: '075793f5943289398bd039ad3e403793e016f9c7a6431450ff741f8c786949bb9927dcbc756ee4ccc8a4f8bf83c6dc62b261b8b43eec7b50de9daf21b60494a4'
@@ -1,3 +1,3 @@
1
1
  module RestfulRouting
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
Binary file
@@ -11,11 +11,13 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Auto-generate a restful_routing file for easy prefix tracking.}
13
13
  spec.description = %q{
14
- While developing Rails apps, it is often difficult to remember which prefixes route to which controller#action. That is why it is useful to run `rake routes` (or `rails routes` in Rails 5) and put that output in a file for later reference. This gem does that for you.
14
+ While developing Rails apps, it is often difficult to remember which prefixes route to which controller#action. That is why it is useful to run `rails routes` and put that output in a file for later reference. This gem does that for you.
15
15
 
16
- After installing the gem in your Rails project, it is listening for saved changes in your `config/routes.rb`. Every time you make a change to routes.rb and you save it, restful_routing will look for `restful_routing.rb` in your root directory. It will update it if there or make it if not.
17
16
 
18
- `restful_routing.rb` will contain the output of `rake routes` or `rails routes`.
17
+ After installing the gem in your Rails project, it is listening for saved changes in your `config/routes.rb`.
18
+ Every time you make a change to routes.rb and you save it, restful_routing will look for `restful_routing.rb` in your root directory. It will update it if there or make it if not.
19
+
20
+ `restful_routing.rb` will contain the output of `rails routes`.
19
21
 
20
22
  }
21
23
  spec.homepage = "https://github.com/casey-stinnett/restful_routing"
@@ -40,4 +42,5 @@ Gem::Specification.new do |spec|
40
42
  spec.add_development_dependency "bundler", "~> 1.13"
41
43
  spec.add_development_dependency "rake", "~> 10.0"
42
44
  spec.add_development_dependency "listen", "~> 3.0"
45
+ spec.add_development_dependency "rails", "~> 5.0"
43
46
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restful_routing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Casey Stinnett
@@ -52,14 +52,28 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.0'
55
69
  description: "\n While developing Rails apps, it is often difficult to remember
56
70
  which prefixes route to which controller#action. That is why it is useful to run
57
- `rake routes` (or `rails routes` in Rails 5) and put that output in a file for later
58
- reference. This gem does that for you.\n\n After installing the gem in your Rails
59
- project, it is listening for saved changes in your `config/routes.rb`. Every time
60
- you make a change to routes.rb and you save it, restful_routing will look for `restful_routing.rb`
71
+ `rails routes` and put that output in a file for later reference. This gem does
72
+ that for you.\n\n\n After installing the gem in your Rails project, it is listening
73
+ for saved changes in your `config/routes.rb`. \n Every time you make a change
74
+ to routes.rb and you save it, restful_routing will look for `restful_routing.rb`
61
75
  in your root directory. It will update it if there or make it if not.\n\n `restful_routing.rb`
62
- will contain the output of `rake routes` or `rails routes`.\n\n "
76
+ will contain the output of `rails routes`.\n\n "
63
77
  email:
64
78
  - stinnett.casey@gmail.com
65
79
  executables: []
@@ -84,6 +98,7 @@ files:
84
98
  - restful_routing-0.1.3.4.gem
85
99
  - restful_routing-0.1.3.gem
86
100
  - restful_routing-1.0.1.gem
101
+ - restful_routing-1.0.2.gem
87
102
  - restful_routing-1.0.gem
88
103
  - restful_routing.gemspec
89
104
  homepage: https://github.com/casey-stinnett/restful_routing