hotwire_scaffold_generator 1.0.0 → 1.0.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 +4 -4
- data/Gemfile.lock +1 -1
- data/hotwire_scaffold_generator.gemspec +4 -4
- data/lib/hotwire_scaffold_generator/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da273cf35b77ea42f1030af3dd3421d5b23006c9cf64117496afd9351a88fed7
|
4
|
+
data.tar.gz: fe4162a81260ac7deabb042547755e60838fd3aa724101a76d5ea372f4f5623b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba11f3bfee27b5a5f571db9eb76a7695f00fd4a6cedbc58ba4ffe25ce8d262875037d525e4770c56a74efd637e2e4f3e33faf468b5c96362208f931abd499497
|
7
|
+
data.tar.gz: 9b40d8318c74888d6568e0ca82eb9145fbf5564720272b0b4288104131c9553ac7a23455381d4564208e8d0264b7a9f9fcd76dfa4e1fd4493a9af252e68514da
|
data/Gemfile.lock
CHANGED
@@ -8,10 +8,10 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["Chase Covington"]
|
9
9
|
spec.email = ["mchasecov@gmail.com"]
|
10
10
|
|
11
|
-
spec.summary = "A gem to generate a MVC scaffold to quickly get started with Turbo Streams."
|
12
|
-
spec.description = "A gem to generate a MVC scaffold to quickly get started with Turbo Streams. This
|
13
|
-
|
14
|
-
when instances are created, updated, and deleted."
|
11
|
+
spec.summary = "A gem to generate a MVC scaffold to quickly get started with client-request format Turbo Streams."
|
12
|
+
spec.description = "A gem to generate a MVC scaffold to quickly get started with Turbo Streams. This scaffold builds
|
13
|
+
on top of the existing Rails generatiors to include the model, controller actions, and Turbo ready-views
|
14
|
+
that you need for your model to be streamed when instances are created, updated, and deleted."
|
15
15
|
spec.homepage = "https://github.com/MchaseCov/hotwire_scaffold_generator"
|
16
16
|
spec.license = "MIT"
|
17
17
|
spec.required_ruby_version = ">= 2.6.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hotwire_scaffold_generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chase Covington
|
@@ -11,9 +11,9 @@ cert_chain: []
|
|
11
11
|
date: 2021-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
|
-
A gem to generate a MVC scaffold to quickly get started with Turbo Streams. This
|
15
|
-
|
16
|
-
when instances are created, updated, and deleted.
|
14
|
+
A gem to generate a MVC scaffold to quickly get started with Turbo Streams. This scaffold builds
|
15
|
+
on top of the existing Rails generatiors to include the model, controller actions, and Turbo ready-views
|
16
|
+
that you need for your model to be streamed when instances are created, updated, and deleted.
|
17
17
|
email:
|
18
18
|
- mchasecov@gmail.com
|
19
19
|
executables: []
|
@@ -71,5 +71,6 @@ requirements: []
|
|
71
71
|
rubygems_version: 3.2.22
|
72
72
|
signing_key:
|
73
73
|
specification_version: 4
|
74
|
-
summary: A gem to generate a MVC scaffold to quickly get started with
|
74
|
+
summary: A gem to generate a MVC scaffold to quickly get started with client-request
|
75
|
+
format Turbo Streams.
|
75
76
|
test_files: []
|