routes_revealer 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/app/controllers/routes_revealer/routes_controller.rb +1 -1
- data/config/routes.rb +1 -1
- data/lib/rails/response_injections.rb +1 -1
- data/lib/routes_revealer.rb +1 -1
- data/lib/routes_revealer/engine.rb +1 -1
- data/lib/routes_revealer/version.rb +2 -2
- data/spec/config/initializers/response_injections_spec.rb +1 -1
- data/spec/controllers/routes_controller_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/helpers/controller_helpers.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4c6a1e3b0e09bef92073f0c4c8d4637b9f7e455
|
4
|
+
data.tar.gz: 23b473b640d23a22155081f7906b9cb9b54dfadf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51ef79d738b27284208e33c044ae0959ac5125dc32e2088f8ad00181e0f27473d0c276f62e26f4a78207b9142abb129f535f094392544a2b2e67805d1c4250ed
|
7
|
+
data.tar.gz: dc521e6a254775484a96fbc59c273feefdd02efb9c9ad4df28de391d0af527ea1fe214da6d87d4dec8290e404702dfc2692397005f3f3bda4f09687637db29d5
|
data/LICENSE
CHANGED
@@ -187,7 +187,7 @@
|
|
187
187
|
same "printed page" as the copyright notice for easier
|
188
188
|
identification within third-party archives.
|
189
189
|
|
190
|
-
Copyright
|
190
|
+
Copyright 2017 CareerBuilder, LLC
|
191
191
|
|
192
192
|
Licensed under the Apache License, Version 2.0 (the "License");
|
193
193
|
you may not use this file except in compliance with the License.
|
data/config/routes.rb
CHANGED
data/lib/routes_revealer.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright
|
1
|
+
# Copyright 2017 CareerBuilder, LLC
|
2
2
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
3
3
|
# you may not use this file except in compliance with the License.
|
4
4
|
# You may obtain a copy of the License at
|
@@ -9,5 +9,5 @@
|
|
9
9
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
10
10
|
# See the License for the specific language governing permissions and limitations under the License.
|
11
11
|
module RoutesRevealer
|
12
|
-
VERSION = '3.0.
|
12
|
+
VERSION = '3.0.1'
|
13
13
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: routes_revealer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The CareerBuilder.com Consumer Development teams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -181,12 +181,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
version: '0'
|
182
182
|
requirements: []
|
183
183
|
rubyforge_project:
|
184
|
-
rubygems_version: 2.5
|
184
|
+
rubygems_version: 2.4.5
|
185
185
|
signing_key:
|
186
186
|
specification_version: 4
|
187
187
|
summary: Provides the route /routes which will list the applications routes
|
188
188
|
test_files:
|
189
189
|
- spec/config/initializers/response_injections_spec.rb
|
190
|
-
- spec/support/helpers/controller_helpers.rb
|
191
|
-
- spec/spec_helper.rb
|
192
190
|
- spec/controllers/routes_controller_spec.rb
|
191
|
+
- spec/spec_helper.rb
|
192
|
+
- spec/support/helpers/controller_helpers.rb
|