streamlined 0.6.0 → 0.6.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: f997f37e68f2febf5c8b7b73366cd75cdccae74942b55cef25ed133748086c29
4
- data.tar.gz: 22a5a7db25b97311c38892f675a52dcbfd29e971a95da94b2aec24909e270920
3
+ metadata.gz: 236a1f6ce2fedd7f3421204d4f9cf670c7d69203644c6a51402d2a17639f8657
4
+ data.tar.gz: 4917b1449c877a04e8a044853724d73791a60db3a410490f9e29d31f8f5d7989
5
5
  SHA512:
6
- metadata.gz: 7b1708ddd3a081021f4d31aef3d6e63ede1f4f6b10325a31f58ad72d5ca7bb1bc9a48d19c58900bd82e866649cac6bd232061d4875f0a0af0f2b421e759cecc2
7
- data.tar.gz: bc0e305ea12bf8858d4a75e081154511fef321ae8a80acb670cd0a80e1ea90d8011e3a34c9c95849347ee10dbd8cc041d1a02b4cfe3781951dc87f36bdad3b6d
6
+ metadata.gz: fa4f8686da6b88827ab76806a3704cca57ba019fc09c84061b79a80f28d4816e1999b5deb2396447ba9ae5511d324b845ba9a9e13817e2629a9caf17ff2624c6
7
+ data.tar.gz: a664456ed905c7b82b76c6c5973c821d544312b80f3f2de279625cc08455b4c3f0381ee2d65a0bd79c35bcadbb5a07cae647f37655ed80fb2e56ee169c837c91
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ ruby-3.1.4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.6.1] - 2024-09-07
6
+
7
+ - Migrate repo to Codeberg
8
+
5
9
  ## [0.6.0] - 2024-09-07
6
10
 
7
11
  - Use much faster `CGI.escapeHTML` for escaping text
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- streamlined (0.6.0)
4
+ streamlined (0.6.1)
5
5
  serbea (>= 2.1)
6
6
  zeitwerk (~> 2.5)
7
7
 
@@ -31,7 +31,7 @@ GEM
31
31
  diff-lcs (1.5.1)
32
32
  drb (2.2.1)
33
33
  e2mmap (0.1.0)
34
- erubi (1.13.0)
34
+ erubi (1.13.1)
35
35
  i18n (1.14.5)
36
36
  concurrent-ruby (~> 1.0)
37
37
  jaro_winkler (1.6.0)
data/README.md CHANGED
@@ -24,12 +24,8 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
24
24
 
25
25
  ## Contributing
26
26
 
27
- Bug reports and pull requests are welcome on GitHub at https://github.com/bridgetownrb/streamlined. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/bridgetownrb/streamlined/blob/main/CODE_OF_CONDUCT.md).
27
+ Bug reports and pull requests are welcome on Codeberg at https://codeberg.org/jaredwhite/streamlined. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://codeberg.org/jaredwhite/streamlined/src/branch/main/CODE_OF_CONDUCT.md).
28
28
 
29
29
  ## License
30
30
 
31
31
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
32
-
33
- ## Code of Conduct
34
-
35
- Everyone interacting in the Streamlined project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/bridgetownrb/streamlined/blob/main/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Streamlined
4
- VERSION = "0.6.0"
4
+ VERSION = "0.6.1"
5
5
  end
data/streamlined.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = "maintainers@bridgetownrb.com"
10
10
 
11
11
  spec.summary = "HTML fragment & component rendering for Ruby using streamlined procs & heredocs."
12
- spec.homepage = "https://github.com/bridgetownrb/streamlined"
12
+ spec.homepage = "https://codeberg.org/jaredwhite/streamlined"
13
13
  spec.license = "MIT"
14
14
  spec.required_ruby_version = ">= 3.1"
15
15
  spec.metadata["rubygems_mfa_required"] = "true"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: streamlined
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-08 00:00:00.000000000 Z
11
+ date: 2025-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: serbea
@@ -63,7 +63,7 @@ files:
63
63
  - lib/streamlined/renderable.rb
64
64
  - lib/streamlined/version.rb
65
65
  - streamlined.gemspec
66
- homepage: https://github.com/bridgetownrb/streamlined
66
+ homepage: https://codeberg.org/jaredwhite/streamlined
67
67
  licenses:
68
68
  - MIT
69
69
  metadata:
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubygems_version: 3.3.3
86
+ rubygems_version: 3.3.26
87
87
  signing_key:
88
88
  specification_version: 4
89
89
  summary: HTML fragment & component rendering for Ruby using streamlined procs & heredocs.