ruht 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: 1bbac88061aa6e3ebe5a2d47de160c912f56950dff0cef628598605b464fb03d
4
- data.tar.gz: fed1a9e6095c3cbf859d4826eb83d06460575f932f48c9e21e238b5593d1e2a1
3
+ metadata.gz: 760b255532fee07bf3676e53d8dedd952c7b62fc0f52b3e898c668ae4d103796
4
+ data.tar.gz: ea333cfde23631937ce0ed272870af5c40fa4040e69a02e991c4211416463e74
5
5
  SHA512:
6
- metadata.gz: 8e126b337abc85c74003a1d56041d6434aeb6b1130110e6b31f365da5f6ddb0ea53e43c2add8a1db40c4653fb6be647faa1f9b27585038e1383c2779c8054609
7
- data.tar.gz: 59d058ab1bed600e50112eb45cde4dbc8559799b0b951c624af8cc1e1989da6ed5e19717f58ea5ba8fa236559dfefe8f9f40b16fa99d9f8b779f405be52cc6fa
6
+ metadata.gz: dd6772fa80d38f5124b0a0b31bba9cca76b95e0a2c8b7d2209499ea3a38f3471083f45396c9498313863dcc141a3d354dd6b1de7258e5615a5ef85c239a9025c
7
+ data.tar.gz: ae6652cff193fd92a858e12815d65cec75465eac2cffe669c268bbfca67ffe6659766330ba0d76b1dbc0283d25990af39be982625019b72ab22eb0e939aa2370
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.1.1] - 2023-02-10
2
+
3
+ - Update links in .gemspec
4
+
1
5
  ## [0.1.0] - 2023-02-10
2
6
 
3
7
  - Capturing variables and methods from the scope
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruht (0.1.0)
4
+ ruht (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/ruht/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ruht
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
data/ruht.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'DSL for building HTML written in Ruby'
12
12
  spec.description = 'Ruht lets you generate HTML using Ruby syntax'
13
- spec.homepage = 'https://github.com/DmitryBarskov/ruht'
13
+ spec.homepage = 'https://github.com/ruby-hyper-text/ruht'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = '>= 2.7.0'
16
16
 
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.metadata['homepage_uri'] = spec.homepage
20
20
  spec.metadata['source_code_uri'] = spec.homepage
21
21
  spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
22
+ spec.metadata['github_repo'] = 'ssh://github.com/ruby-hyper-text/ruht'
22
23
 
23
24
  # Specify which files should be added to the gem when it is released.
24
25
  # The `git ls-files -z` loads the files in the RubyGem
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruht
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Barskov
@@ -61,14 +61,15 @@ files:
61
61
  - sig/ruht/tags.rbs
62
62
  - sig/ruht/version.rbs
63
63
  - sig/ruht/void_element.rbs
64
- homepage: https://github.com/DmitryBarskov/ruht
64
+ homepage: https://github.com/ruby-hyper-text/ruht
65
65
  licenses:
66
66
  - MIT
67
67
  metadata:
68
68
  allowed_push_host: https://rubygems.org
69
- homepage_uri: https://github.com/DmitryBarskov/ruht
70
- source_code_uri: https://github.com/DmitryBarskov/ruht
71
- changelog_uri: https://github.com/DmitryBarskov/ruht/blob/main/CHANGELOG.md
69
+ homepage_uri: https://github.com/ruby-hyper-text/ruht
70
+ source_code_uri: https://github.com/ruby-hyper-text/ruht
71
+ changelog_uri: https://github.com/ruby-hyper-text/ruht/blob/main/CHANGELOG.md
72
+ github_repo: ssh://github.com/ruby-hyper-text/ruht
72
73
  rubygems_mfa_required: 'true'
73
74
  post_install_message:
74
75
  rdoc_options: []