joys 0.1.3 → 0.1.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: e61c772b1a54599aa640ae7185d7c555584569b42a828a622585fe1926c5c875
4
- data.tar.gz: 3386e6f05c3bf96bda1b3c89ee060896a4bf6d652a81044729929cb32ef21fdd
3
+ metadata.gz: 535418d45aa5e9bac8290bb8f0ff998b500d2fe8aabc54c127a6a7a6fce44143
4
+ data.tar.gz: f895ab76649b74ba973584dec9dfefc60d4a7be45223dad17d788302c656b806
5
5
  SHA512:
6
- metadata.gz: 6b64267c0567828a6ef1ddf5682336f03e33e06a7e2b4ed1ef4fabf0712a835be9ab1f69c449dc6c8bfb172b1bcfb876f00bb9a3f424bf0a6d6537d67fe39e26
7
- data.tar.gz: 307da8295d8df3b53cac60d55c3550c42e2b3926e9b5de5629011f814acc6bda73fd97f541fc95afe4f0b76ff16441e92e06f27f133533b102cce1d87b13f69c
6
+ metadata.gz: 8845d616b1dafd29c0de60d3d643e1ccfa76813c9cf09a3e57afceb8af1c70081178ad90230b6a7bed4cc2f94e09bb8cec7323b390263c77416c581d96586759
7
+ data.tar.gz: '048e124b7ba2a6f4453964b478c686d3b3d031aaa7badb34bb87a458b3e6cb28176af4385fb8f295a4a258e9d293c6e6bbf3bc149c5c112480b5e8253b90214e'
data/CHANGELOG.md CHANGED
@@ -20,3 +20,8 @@
20
20
  - Added Static Site Generator
21
21
  - Added Static Data Layer
22
22
  - Added CLI Utility
23
+
24
+ ## [0.1.4] - 2025-09-30
25
+
26
+ - Fixed buggy dependency in tags.rb
27
+ - No more breaking change
data/README.md CHANGED
@@ -974,7 +974,7 @@ div?("# Welcome to Joys")
974
974
  p?("This is **bold** and *italic* text")
975
975
  # => <p>This is <strong>bold</strong> and <em>italic</em> text</p>
976
976
 
977
- article? do
977
+ article do
978
978
  h2?("## Getting Started")
979
979
  p?("Learn how to use the `tag?` methods")
980
980
  end
@@ -1057,7 +1057,7 @@ div!("<h1>Raw HTML</h1>")
1057
1057
  # => <div><h1>Raw HTML</h1></div>
1058
1058
 
1059
1059
  # Markup processing (recommended)
1060
- div?("## This becomes H1")
1060
+ div?("# This becomes H1")
1061
1061
  # => <div><h1>This becomes H1</h1></div>
1062
1062
  ```
1063
1063
 
data/joys-0.1.3.gem ADDED
Binary file
data/lib/joys/tags.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # lib/joys/tags.rb
2
- require_relative "hugdown"
3
2
  module Joys
4
3
  module Tags
5
4
  VOID_TAGS = %w[area base br col embed hr img input link meta param source track wbr].freeze
data/lib/joys/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Joys
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Garcia
@@ -27,6 +27,7 @@ files:
27
27
  - joys-0.1.0.gem
28
28
  - joys-0.1.1.gem
29
29
  - joys-0.1.2.gem
30
+ - joys-0.1.3.gem
30
31
  - lib/.DS_Store
31
32
  - lib/joys.rb
32
33
  - lib/joys/cli.rb
@@ -47,7 +48,7 @@ metadata:
47
48
  allowed_push_host: https://rubygems.org
48
49
  homepage_uri: https://github.com/activestylus/joys.git
49
50
  source_code_uri: https://github.com/activestylus/joys.git
50
- changelog_uri: https://github.com/activestylus/joys/CHANGELOG.md
51
+ changelog_uri: https://github.com/activestylus/joys/blob/main/CHANGELOG.md
51
52
  rdoc_options: []
52
53
  require_paths:
53
54
  - lib