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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a917a7e797d63a9a6aa1caa6ab87b40b5da0690a
4
- data.tar.gz: c2617bfc4ecb70e1f9fe04805145cdf6e09ed373
3
+ metadata.gz: 646cd1c2aa2312ab2e3530166f9e9378bcead54a
4
+ data.tar.gz: b135a75773598111eca946d9ed72fa1e264572e1
5
5
  SHA512:
6
- metadata.gz: d2ff6b7fa3baf0132df963f91055036f690118c9e01bacb12382177f178371d67e59592dd6bce9cf11bd97659c5dfe51d4f3868f4e37915337f7ff08062012e4
7
- data.tar.gz: 3af53150d15a82c60a1a3c7f1eb115744597a7b1831f85f33efa56e5bdc9133022bbc6569a09118c55f5d2b80f3de1a277be6814c82222bbab95cb94632e07a1
6
+ metadata.gz: 9442579dfc264e8e12782772295a8a0a4f639ffe07181c6064f96be94df9a580aa18314a01bd12b66d33e759b3d8d9d2b6fd062532d9d2e411accd4d2d8af3a9
7
+ data.tar.gz: ac1bbc0e3ecb98bcb7cde1b9ed53b6547d9548c5dd7cc7f6a0c0fd11870d7f90f6cd74f66af56433f8bf1089a8177d54a7f77417223deb8df11f16b2ab41777c
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.4.0
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
@@ -5,7 +5,4 @@ set -vx
5
5
 
6
6
  bundle install
7
7
 
8
- # Do any other automated setup that you need to do here
9
- File.open(Dir.pwd + '/gitignore', 'w+') do |file|
10
- file.write 'restful_routing.rb'
11
- end
8
+ # Do any other automated setup that you need to do here
@@ -1,3 +1,3 @@
1
1
  module RestfulRouting
2
- VERSION = "1.1.4"
2
+ VERSION = "1.1.4.1"
3
3
  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.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:
Binary file
Binary file
Binary file