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 +4 -4
- data/lib/restful_routing/version.rb +1 -1
- data/restful_routing-1.0.2.gem +0 -0
- data/restful_routing.gemspec +6 -3
- metadata +21 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16ac175dad3e4e2495bb9b2998f008d09609a073
|
4
|
+
data.tar.gz: ea8cf19ae0b0a5a52663dfbf57bb451b354a614c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8616d8a653edc6f1f94b034a3ae22507aea2ed532533a505f8d107b2fe2cda1dff953bac8cd69cf6bb9281be7596206b23931e58eda18f035a5a49ca2dc77a64
|
7
|
+
data.tar.gz: '075793f5943289398bd039ad3e403793e016f9c7a6431450ff741f8c786949bb9927dcbc756ee4ccc8a4f8bf83c6dc62b261b8b43eec7b50de9daf21b60494a4'
|
Binary file
|
data/restful_routing.gemspec
CHANGED
@@ -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 `
|
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
|
-
|
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.
|
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
|
-
`
|
58
|
-
|
59
|
-
|
60
|
-
|
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 `
|
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
|