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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '081ff21d8bc03035d45cf5d3a52b942c078c4a39b555faab8020b7d575cb374c'
4
- data.tar.gz: 3ea7a75bb0d7647df82d1d6ab9e67d5c8dfa8cb46da04a5538e16a47bd79a2a2
3
+ metadata.gz: da273cf35b77ea42f1030af3dd3421d5b23006c9cf64117496afd9351a88fed7
4
+ data.tar.gz: fe4162a81260ac7deabb042547755e60838fd3aa724101a76d5ea372f4f5623b
5
5
  SHA512:
6
- metadata.gz: 10619b3ebc64c0c7f691026065deb2f923e51f513e6ed514ec60ed592d433c0669cd2daa6cee1a08da4b8819e32675b4e041032a05d14cc38954217d25ac7543
7
- data.tar.gz: 7f68ae755e957b2c6f63a3aea7b78026d33f30896016c2ee3eb5a62378855ca07b5cf2111b9656f0c5deafc631f4de040bc3d45da25fd7b62d0f9e865e180930
6
+ metadata.gz: ba11f3bfee27b5a5f571db9eb76a7695f00fd4a6cedbc58ba4ffe25ce8d262875037d525e4770c56a74efd637e2e4f3e33faf468b5c96362208f931abd499497
7
+ data.tar.gz: 9b40d8318c74888d6568e0ca82eb9145fbf5564720272b0b4288104131c9553ac7a23455381d4564208e8d0264b7a9f9fcd76dfa4e1fd4493a9af252e68514da
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hotwire_scaffold_generator (1.0.0)
4
+ hotwire_scaffold_generator (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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 gem includes the
13
- model callbacks, controller actions, and view stream recievers that you need for your model to be broadcasted live
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireScaffoldGenerator
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
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.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 gem includes the
15
- model callbacks, controller actions, and view stream recievers that you need for your model to be broadcasted live
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 Turbo Streams.
74
+ summary: A gem to generate a MVC scaffold to quickly get started with client-request
75
+ format Turbo Streams.
75
76
  test_files: []