js_from_routes 2.0.6 → 2.1.0
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c20abede0e361ea0907779c21b1edf48fd14cf3ba4c61415429ff05f3f7efc
|
4
|
+
data.tar.gz: 9964e215fdb7d8fae34e324cec5337cfb8652e91abd03c3c1b4d0cca24975d56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '048cc9f879bff7597995b4c13d450e89f026f73c70b00b829db5aa315b5c073e3e5b62b01a0db4626a74ddf72ca54cf8643e15b98fd6e210800b465a49767c07'
|
7
|
+
data.tar.gz: 8b967177b0b3030e0928dd89125980d481ba1d13a5dc35984f0c7664c0a12ed7367d9aa87ab1cf754f348a825d0b843246d2f8eac237b2099b2f2c6ba4e1771b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
# [2.1.0](https://github.com/ElMassimo/js_from_routes/compare/js_from_routes@2.0.6...js_from_routes@2.1.0) (2023-02-07)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* use relative paths in auto-generated files ([#36](https://github.com/ElMassimo/js_from_routes/issues/36)) ([0440c50](https://github.com/ElMassimo/js_from_routes/commit/0440c505b1b4d3cca6c390004234faacd10b9480)), closes [#35](https://github.com/ElMassimo/js_from_routes/issues/35)
|
7
|
+
|
8
|
+
|
9
|
+
|
1
10
|
## [2.0.6](https://github.com/ElMassimo/js_from_routes/compare/js_from_routes@2.0.5...js_from_routes@2.0.6) (2022-05-25)
|
2
11
|
|
3
12
|
|
@@ -37,7 +37,7 @@ module JsFromRoutes
|
|
37
37
|
|
38
38
|
# Public: Name of the JS file with helpers for the the given controller.
|
39
39
|
def import_filename
|
40
|
-
@config.output_folder.
|
40
|
+
filename.relative_path_from(@config.output_folder).to_s.sub(/\.\w+$/, "")
|
41
41
|
end
|
42
42
|
|
43
43
|
# Public: Name of the file as a valid JS variable.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
//
|
2
2
|
// DO NOT MODIFY: This file was automatically generated by JsFromRoutes.
|
3
3
|
<% helpers.each do |helper| %>
|
4
|
-
export { default as <%= helper.js_name %> } from '
|
4
|
+
export { default as <%= helper.js_name %> } from './<%= helper.import_filename %>'
|
5
5
|
<% end %>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: js_from_routes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Máximo Mussini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|