rails_react_scaffold 0.1.0 → 0.1.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d4f89826bd1ed110b4ce787a994a5c1057f8728e2888fddc001020ab504a25c
|
4
|
+
data.tar.gz: 64edcc9b0b448f1fc5d991ab906c72406e7886c4a0352cbc69b278f1dc5df7a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a171df4fa8cc3f0e0b82c68f9d32c151ba8fe1a4e97e2a8039df47647765cc7559c73b8f9cee1dac8462d3db00d4a5c0ab1302bcf26387a9fc7babf8de8d65df
|
7
|
+
data.tar.gz: 41ec8a8808a71652376e09d86e01212d83f9fb5363fc0795afeb8b5f2dde34334cc1e678d8d0b988e029e8223e7bde104fa399659ed469f228c8b5bf53fc6b01
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
-
## [0.1.
|
3
|
+
## [0.1.1] - 2023-02-19
|
4
|
+
|
5
|
+
- Bug Fixes
|
6
|
+
- Fixed issue that was causing Update in the controller to not work because instance variable was nil.
|
7
|
+
|
8
|
+
## [0.1.0] - 2023-02-19
|
4
9
|
|
5
10
|
- Initial release
|
6
11
|
- Support for jQuery and Fetch AJAX engines
|
@@ -2,7 +2,7 @@ class <%= controller_class_name %>Controller < ApplicationController
|
|
2
2
|
<%- if options[:use_cancan] -%>
|
3
3
|
load_and_authorize_resource
|
4
4
|
<%- else -%>
|
5
|
-
before_action :set_<%= singular_name %>, only: [:show, :edit, :destroy]
|
5
|
+
before_action :set_<%= singular_name %>, only: [:show, :edit, :destroy, :update]
|
6
6
|
<%- end -%>
|
7
7
|
|
8
8
|
def index
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_react_scaffold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Casey Li
|
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: '0'
|
67
67
|
requirements: []
|
68
|
-
rubygems_version: 3.
|
68
|
+
rubygems_version: 3.4.7
|
69
69
|
signing_key:
|
70
70
|
specification_version: 4
|
71
71
|
summary: Gem to build Rails scaffolds for Rails projects that use React front ends.
|