chars 0.3.3 → 0.3.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: 56d15d9a339ad8d7a1106fcf031445010e73eca3c86184baf9d793d7c1765ce2
4
- data.tar.gz: 75f7ce1ecfba11f41bcc64d26900d5da05a0cf30a0fcca4100cf6e3b6967f1e8
3
+ metadata.gz: 1163a14b9962b1f15bf11dc66690f4a78fab89091a55ea1f18279fea3446a072
4
+ data.tar.gz: 19636d167fd9dd1f316f632967e6a40a9b5d5c479f7b962c447eb18dd84ddc26
5
5
  SHA512:
6
- metadata.gz: ac159bcca8f06abaf6962a1d0c7b693fea39202bcce3426cd72baea4cbba4650cabbbf0cdc0147031ba71752f359c8659def748b3462454ac8fe992150b0de83
7
- data.tar.gz: f8b148a08e9dd8b2f8b087b3cb88896e66c138460a317a591f9c3088e02129945b0a836f3f37c0894e86ad6f064a7cf747807efcc54df9712e51e5a034069d5e
6
+ metadata.gz: b48012e9cb400c1fec296f9cc282e7f3698017ff13aedc322b3f2397bed688ed03af1eb4754ebbcae5ca2d8ea90186aebf9393bafc63d8123fe991dba0e5bb41
7
+ data.tar.gz: fc8823aa5993ed81ddf34d9fe8154e99590054ce12a58296c9b9648aa3fe3154c8c699de3be07a485d487018fa0cfb93499f07a99888050e0ea099134b3f8047
@@ -13,6 +13,8 @@ jobs:
13
13
  - '3.1'
14
14
  - '3.2'
15
15
  - '3.3'
16
+ - '3.4'
17
+ - '4.0'
16
18
  - jruby
17
19
  - truffleruby
18
20
  name: Ruby ${{ matrix.ruby }}
data/ChangeLog.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 0.3.4 / 2026-01-12
2
+
3
+ * Added support for Ruby 4.0.
4
+ * Fixed a bug in {Chars::CharSet#initialize_copy} where `super` was not being
5
+ called.
6
+
1
7
  ### 0.3.3 / 2024-01-23
2
8
 
3
9
  * Switch to using `require_relative` to improve load-times.
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2009-2024 Hal Brodigan
3
+ Copyright (c) 2009-2026 Hal Brodigan
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/gemspec.yml CHANGED
@@ -14,10 +14,10 @@ metadata:
14
14
  documentation_uri: https://rubydoc.info/gems/chars
15
15
  source_code_uri: https://github.com/postmodern/chars.rb
16
16
  bug_tracker_uri: https://github.com/postmodern/chars.rb/issues
17
- changelog_uri: https://github.com/postmodern/chars.rb/blob/master/ChangeLog.md
17
+ changelog_uri: https://github.com/postmodern/chars.rb/blob/main/ChangeLog.md
18
18
  rubygems_mfa_required: 'true'
19
19
 
20
20
  required_ruby_version: ">= 2.0.0"
21
21
 
22
22
  development_dependencies:
23
- bundler: ~> 2.0
23
+ bundler: ">= 2.0.0"
@@ -44,6 +44,8 @@ module Chars
44
44
  # The other {CharSet} object.
45
45
  #
46
46
  def initialize_copy(other)
47
+ super(other)
48
+
47
49
  @chars = other.instance_variable_get('@chars').dup
48
50
  end
49
51
 
data/lib/chars/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Chars
2
2
  # chars version
3
- VERSION = '0.3.3'
3
+ VERSION = '0.3.4'
4
4
  end
metadata CHANGED
@@ -1,29 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chars
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-01-24 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '2.0'
18
+ version: 2.0.0
20
19
  type: :development
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
- - - "~>"
23
+ - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '2.0'
25
+ version: 2.0.0
27
26
  description: Chars is a Ruby library for working with various character sets, recognizing
28
27
  text and generating random text from specific character sets.
29
28
  email: postmodern.mod3@gmail.com
@@ -70,9 +69,8 @@ metadata:
70
69
  documentation_uri: https://rubydoc.info/gems/chars
71
70
  source_code_uri: https://github.com/postmodern/chars.rb
72
71
  bug_tracker_uri: https://github.com/postmodern/chars.rb/issues
73
- changelog_uri: https://github.com/postmodern/chars.rb/blob/master/ChangeLog.md
72
+ changelog_uri: https://github.com/postmodern/chars.rb/blob/main/ChangeLog.md
74
73
  rubygems_mfa_required: 'true'
75
- post_install_message:
76
74
  rdoc_options: []
77
75
  require_paths:
78
76
  - lib
@@ -87,8 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
85
  - !ruby/object:Gem::Version
88
86
  version: '0'
89
87
  requirements: []
90
- rubygems_version: 3.4.10
91
- signing_key:
88
+ rubygems_version: 4.0.3
92
89
  specification_version: 4
93
90
  summary: A Ruby library for working with various character sets
94
91
  test_files: []