js_from_routes 2.0.5 → 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: '00930d579b2a7eaada963f2b8139bf03f850224ca6a93cc4715b938a84e26b58'
4
- data.tar.gz: 10556d08300abe1e64c0fdfaa35db23099d7915306928a210f48717258fc9762
3
+ metadata.gz: 76c20abede0e361ea0907779c21b1edf48fd14cf3ba4c61415429ff05f3f7efc
4
+ data.tar.gz: 9964e215fdb7d8fae34e324cec5337cfb8652e91abd03c3c1b4d0cca24975d56
5
5
  SHA512:
6
- metadata.gz: 0c099a34cc949e8d600c1199f8bcb66228bf0f57c5d17de329c87fefcacdcbe2f465996a1d0111a1b964117977bc311477640508f49d4a33d5107ba03d1e2551
7
- data.tar.gz: a720dfc8dd9d2c26291c8feb6f8e009e3612612be2db83278c27d632a2c1bbcfe4a7e2bf9f7d63aa68c4418f119693c83cf58229bf21691e9a4492b0f7f48ccd
6
+ metadata.gz: '048cc9f879bff7597995b4c13d450e89f026f73c70b00b829db5aa315b5c073e3e5b62b01a0db4626a74ddf72ca54cf8643e15b98fd6e210800b465a49767c07'
7
+ data.tar.gz: 8b967177b0b3030e0928dd89125980d481ba1d13a5dc35984f0c7664c0a12ed7367d9aa87ab1cf754f348a825d0b843246d2f8eac237b2099b2f2c6ba4e1771b
data/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
- ## [2.0.5](https://github.com/ElMassimo/js_from_routes/compare/js_from_routes@2.0.5...js_from_routes@2.0.5) (2021-09-02)
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
+
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)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * should not attempt to export routes without controllers ([47f8f70](https://github.com/ElMassimo/js_from_routes/commit/47f8f70b0db98baa240470f8b2b891a730499518))
2
16
 
3
17
 
4
18
 
@@ -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.basename.join((basename.split(".")[0]).to_s)
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.
@@ -186,7 +186,7 @@ module JsFromRoutes
186
186
  # Internal: Returns exported routes grouped by controller name.
187
187
  def exported_routes_by_controller(routes)
188
188
  routes.select { |route|
189
- route.defaults.fetch(:export, false)
189
+ route.defaults.fetch(:export, false) && route.requirements[:controller]
190
190
  }.group_by { |route|
191
191
  route.requirements.fetch(:controller)
192
192
  }
@@ -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 '~/<%= helper.import_filename %>'
4
+ export { default as <%= helper.js_name %> } from './<%= helper.import_filename %>'
5
5
  <% end %>
@@ -1,5 +1,5 @@
1
1
  //
2
2
  // DO NOT MODIFY: This file was automatically generated by JsFromRoutes.
3
- import * as helpers from '~/api/all'
4
- export * from '~/api/all'
3
+ import * as helpers from './all'
4
+ export * from './all'
5
5
  export default helpers
@@ -4,5 +4,5 @@
4
4
  # Generates one file per controller, and one function per route.
5
5
  module JsFromRoutes
6
6
  # Public: This library adheres to semantic versioning.
7
- VERSION = "2.0.5"
7
+ VERSION = "2.1.0"
8
8
  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.5
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: 2021-09-02 00:00:00.000000000 Z
11
+ date: 2023-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
169
  requirements: []
170
- rubygems_version: 3.1.4
170
+ rubygems_version: 3.2.32
171
171
  signing_key:
172
172
  specification_version: 4
173
173
  summary: Generate JS automatically from Rails routes.