restful_routing 1.1.4 → 1.1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -0
- data/README.md +4 -1
- data/bin/setup +1 -4
- data/lib/restful_routing/version.rb +1 -1
- metadata +2 -4
- data/restful_routing-1.0.3.gem +0 -0
- data/restful_routing-1.1.1.gem +0 -0
- data/restful_routing-1.1.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 646cd1c2aa2312ab2e3530166f9e9378bcead54a
|
4
|
+
data.tar.gz: b135a75773598111eca946d9ed72fa1e264572e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9442579dfc264e8e12782772295a8a0a4f639ffe07181c6064f96be94df9a580aa18314a01bd12b66d33e759b3d8d9d2b6fd062532d9d2e411accd4d2d8af3a9
|
7
|
+
data.tar.gz: ac1bbc0e3ecb98bcb7cde1b9ed53b6547d9548c5dd7cc7f6a0c0fd11870d7f90f6cd74f66af56433f8bf1089a8177d54a7f77417223deb8df11f16b2ab41777c
|
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -17,6 +17,9 @@ And then execute:
|
|
17
17
|
Or install it yourself:
|
18
18
|
|
19
19
|
$ gem install restful_routing
|
20
|
+
Then start your engines!
|
21
|
+
|
22
|
+
$ rails s
|
20
23
|
|
21
24
|
**You'll need to add `restful_routing.rb` to your `.gitignore`**
|
22
25
|
|
@@ -30,7 +33,7 @@ Then, while your server is running, whenever you save changes to routes.rb, rest
|
|
30
33
|
|
31
34
|
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.
|
32
35
|
|
33
|
-
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.
|
36
|
+
After installing the gem in your Rails project and starting your server (`rails s`), 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.
|
34
37
|
|
35
38
|
`restful_routing.rb` will contain the output of `rails routes`.
|
36
39
|
|
data/bin/setup
CHANGED
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.1.4
|
4
|
+
version: 1.1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Casey Stinnett
|
@@ -81,6 +81,7 @@ extensions: []
|
|
81
81
|
extra_rdoc_files: []
|
82
82
|
files:
|
83
83
|
- ".gitignore"
|
84
|
+
- ".travis.yml"
|
84
85
|
- Gemfile
|
85
86
|
- LICENSE.txt
|
86
87
|
- README.md
|
@@ -89,10 +90,7 @@ files:
|
|
89
90
|
- bin/setup
|
90
91
|
- lib/restful_routing.rb
|
91
92
|
- lib/restful_routing/version.rb
|
92
|
-
- restful_routing-1.0.3.gem
|
93
|
-
- restful_routing-1.1.1.gem
|
94
93
|
- restful_routing-1.1.2.gem
|
95
|
-
- restful_routing-1.1.gem
|
96
94
|
- restful_routing.gemspec
|
97
95
|
homepage: https://github.com/casey-stinnett/restful_routing
|
98
96
|
licenses:
|
data/restful_routing-1.0.3.gem
DELETED
Binary file
|
data/restful_routing-1.1.1.gem
DELETED
Binary file
|
data/restful_routing-1.1.gem
DELETED
Binary file
|