turbo_ready 0.0.3 → 0.0.4

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: f2831ed42b7371306d36de27061338a9d5c6dbd23ba257ab02cc894c3bbfbfa4
4
- data.tar.gz: 010bdaf46c2bea84bd831fc93eb3b02ac7c8d5ab2601648dede36915e04842d6
3
+ metadata.gz: b07e0ce9c51b2f3bc6fab5d95f97266115e1faa7347aae49650e3218f21c9d65
4
+ data.tar.gz: 589586d61a2c1845dbbabdf19a5ab13b03ef3c06b9ebe7522edab8cdfa9ac9dd
5
5
  SHA512:
6
- metadata.gz: b97572923e5389547b7a043babd63c79f064b254cf3ccd1674460a8bee2cf89fb7aa262171a4ed7f3e982c776f714f070ad61fab3a68c8aedb06db72ee8822cb
7
- data.tar.gz: 665fde65402233946cd6562e32f40af1698d5c825d0c8b494c55508948a3bda7913d9397c7a9050949766374ca919bd0e2c219dc5b4b716121c76c39eaa76222
6
+ metadata.gz: 1c49feb4f8599ce6cd57021fca945fc72df43b9e71202a6c03f4bd7b64f948d09eb8bb7788e5a0fb43a614a37f4ddc210fa919ae79e8437f178a1ced9a76edf2
7
+ data.tar.gz: b2ad53e8b8799c804f5cfd87dbb5920166943029d524da9a48df8b91f2e23d31fda431e89a047763301ef205d0930bf56e12402b5dfaaa919a366cf702fca1c9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- turbo_ready (0.0.3)
4
+ turbo_ready (0.0.4)
5
5
  rails (>= 6.1)
6
6
  turbo-rails (>= 1.1)
7
7
 
data/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  </h1>
9
9
  <p align="center">
10
10
  <a href="http://blog.codinghorror.com/the-best-code-is-no-code-at-all/" target="_blank">
11
- <img alt="Lines of Code" src="https://img.shields.io/badge/lines_of_code-275-brightgreen.svg?style=flat" />
11
+ <img alt="Lines of Code" src="https://img.shields.io/badge/lines_of_code-278-brightgreen.svg?style=flat" />
12
12
  </a>
13
13
  <a href="https://github.com/testdouble/standard" target="_blank">
14
14
  <img alt="Ruby Code Style" src="https://img.shields.io/badge/Ruby_Code_Style-standard-brightgreen.svg" />
@@ -16,6 +16,9 @@
16
16
  <a href="https://github.com/sheerun/prettier-standard" target="_blank">
17
17
  <img alt="JavaScript Code Style" src="https://img.shields.io/badge/JavaScript_Code_Style-prettier_standard-ff69b4.svg" />
18
18
  </a>
19
+ <a href="https://bundlephobia.com/package/turbo_ready" target="_blank">
20
+ <img alt="npm bundle size" src="https://img.shields.io/bundlephobia/minzip/turbo_ready?label=minified%20size">
21
+ </a>
19
22
  </p>
20
23
  </p>
21
24
 
@@ -5,6 +5,7 @@ module TurboReady
5
5
  attr_reader :ruby_string, :turbo_ready_tag_builder
6
6
 
7
7
  delegate_missing_to :ruby_string
8
+ delegate :to_s, to: :ruby_string
8
9
 
9
10
  def initialize(ruby_string, turbo_ready_tag_builder:)
10
11
  @ruby_string = ruby_string
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TurboReady
4
- VERSION = "0.0.3"
4
+ VERSION = "0.0.4"
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo_ready",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Take full control of the DOM with Turbo Streams",
5
5
  "main": "app/assets/builds/turbo_ready.js",
6
6
  "repository": "https://github.com/hopsoft/turbo_ready",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbo_ready
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nate Hopkins (hopsoft)