js_from_routes 2.1.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +19 -0
- data/lib/js_from_routes/generator.rb +3 -2
- data/lib/js_from_routes/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4dc77943e97a5b5ddb24ebf0dea4f8eb246ceee14e7e0db6820d18fa3d5e880d
|
4
|
+
data.tar.gz: f4903735ecf2a1456735483c9f79ff0852a76f6d2ec091196b4310d4cb453a08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18e08f5bbccf22d80325ed48f6dbde2381f7369749d1fcdf28793a44242e56291bff6b5024a5ecd634eef88dc01c0ca36e1104a25874c0baae48ed6acf77c116
|
7
|
+
data.tar.gz: e5b921b29440548ae6624782084d5e90ed78c87609e8f3fbef64e3767b7e90cf9954c58184747df05cdb6f9998719f8a54c973ce95d863f7e4c1e77301d16108
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
# [3.0.0](https://github.com/ElMassimo/js_from_routes/compare/js_from_routes@2.1.0...js_from_routes@3.0.0) (2023-10-09)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* **breaking:** no longer map `index` to `list` and `show` to `get` ([5eb3f48](https://github.com/ElMassimo/js_from_routes/commit/5eb3f48de71fe38ee1c67d9b91a81d71a437e1a8))
|
7
|
+
* add `export_if` to allow using custom `:export` values ([fd1776c](https://github.com/ElMassimo/js_from_routes/commit/fd1776cc91402f1e9a9003031cb9fd6c3a0d63f9))
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
If you want to preserve the old behavior:
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
JsFromRoutes.config do |config|
|
16
|
+
config.helper_mappings = {"index" => "list", "show" => "get"}
|
17
|
+
end
|
18
|
+
```
|
19
|
+
|
1
20
|
# [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
21
|
|
3
22
|
|
@@ -174,8 +174,9 @@ module JsFromRoutes
|
|
174
174
|
{
|
175
175
|
all_helpers_file: true,
|
176
176
|
client_library: "@js-from-routes/client",
|
177
|
+
export_if: ->(route) { route.defaults.fetch(:export, nil) },
|
177
178
|
file_suffix: "Api.js",
|
178
|
-
helper_mappings: {
|
179
|
+
helper_mappings: {},
|
179
180
|
output_folder: root.join("app", dir, "api"),
|
180
181
|
template_path: File.expand_path("template.js.erb", __dir__),
|
181
182
|
template_all_path: File.expand_path("template_all.js.erb", __dir__),
|
@@ -186,7 +187,7 @@ module JsFromRoutes
|
|
186
187
|
# Internal: Returns exported routes grouped by controller name.
|
187
188
|
def exported_routes_by_controller(routes)
|
188
189
|
routes.select { |route|
|
189
|
-
|
190
|
+
config.export_if.call(route) && route.requirements[:controller]
|
190
191
|
}.group_by { |route|
|
191
192
|
route.requirements.fetch(:controller)
|
192
193
|
}
|
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:
|
4
|
+
version: 3.0.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: 2023-
|
11
|
+
date: 2023-10-09 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.
|
170
|
+
rubygems_version: 3.4.10
|
171
171
|
signing_key:
|
172
172
|
specification_version: 4
|
173
173
|
summary: Generate JS automatically from Rails routes.
|