object_shadow 1.1.1 → 1.1.2

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: b797b35dfd1f1b5d3018dfe1e8db3a762db692662269f2b2f760f9b154337d39
4
- data.tar.gz: 93269d2fcd22a31f77fd8d3e608ef15efb99b946c03f63aa5ba669d5d78b5faf
3
+ metadata.gz: c700b799dad0cc8e2b25b420e9b57c5c439f2a2dbc36d2478102f94bc89e10c4
4
+ data.tar.gz: 3a4116c876a07bec970006bc7ebe00fca6792c5d44bf6c46ef4401ee455c66fd
5
5
  SHA512:
6
- metadata.gz: f8ebaf9cbd5e3b285f689a1e3357aaaf01866632d042187f758ff0c9553c8f20e693c2b30d3cce105eba867d7c84b39cc35b023eb81683bab5b87236badd2862
7
- data.tar.gz: 16ec12a96de09a4fc23a48a6637c789cc5b1c0fc9f5a8e3c8bd4011fcf33672e544b840c892b315fa9e8a97a7cac672b103ab70d27186b12a09fcefc2f861c33
6
+ metadata.gz: 58018fbf8708219a9df96e0d113a5565973977f5b5e8c6836d728cabbf1ec6087b6ac768671bf3769c807aa0f503487c2fe619a02cce385372a54fba2c03d040
7
+ data.tar.gz: 32ae9c6d4112147e6676f79913f569269d1bb069ae1a8fcddd65ba51b24f896589239969fbe23e08f63156a7d3a73273c383db4e03829aad39925d7182210104
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.1.2
4
+
5
+ * Relax Ruby requirement to allow Ruby 4.0
6
+
3
7
  ### 1.1.1
4
8
 
5
9
  * Relax Ruby requirement to allow Ruby 3.0
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem "minitest"
5
+ gem "minitest", "~> 5.27.0"
6
6
  gem "rake"
7
7
  gem "irb"
8
8
  gem "wirb"
data/Gemfile.lock CHANGED
@@ -1,20 +1,43 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- object_shadow (1.1.0)
4
+ object_shadow (1.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- irb (1.0.0)
10
- minitest (5.11.3)
11
- paint (2.1.0)
12
- rake (12.3.2)
13
- wirb (2.1.2)
14
- paint (>= 0.9, < 3.0)
9
+ date (3.5.1)
10
+ erb (6.0.1)
11
+ io-console (0.8.2)
12
+ irb (1.16.0)
13
+ pp (>= 0.6.0)
14
+ rdoc (>= 4.0.0)
15
+ reline (>= 0.4.2)
16
+ minitest (6.0.0)
17
+ prism (~> 1.5)
18
+ paint (2.3.0)
19
+ pp (0.6.3)
20
+ prettyprint
21
+ prettyprint (0.2.0)
22
+ prism (1.7.0)
23
+ psych (5.3.1)
24
+ date
25
+ stringio
26
+ rake (13.3.1)
27
+ rdoc (7.0.3)
28
+ erb
29
+ psych (>= 4.0.0)
30
+ tsort
31
+ reline (0.6.3)
32
+ io-console (~> 0.5)
33
+ stringio (3.2.0)
34
+ tsort (0.2.0)
35
+ wirb (1.0.2)
36
+ paint
15
37
 
16
38
  PLATFORMS
17
39
  ruby
40
+ x86_64-linux
18
41
 
19
42
  DEPENDENCIES
20
43
  irb
@@ -25,4 +48,4 @@ DEPENDENCIES
25
48
  wirb
26
49
 
27
50
  BUNDLED WITH
28
- 1.17.3
51
+ 2.4.19
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2019-2020 Jan Lelis, https://janlelis.com
1
+ Copyright (c) 2019-2022 Jan Lelis, https://janlelis.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -204,6 +204,6 @@ Requires the following gems: **paint**, **wirb**, **io-console**
204
204
 
205
205
  ## J-_-L
206
206
 
207
- Copyright (C) 2019-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
207
+ Copyright (C) 2019-2022 Jan Lelis <https://janlelis.com>. Released under the MIT license.
208
208
 
209
209
  PS: This gem would not exist if the [instance gem](https://rubyworks.github.io/instance/) did not come up with the idea.
@@ -3,5 +3,5 @@
3
3
  require_relative "basic_object"
4
4
 
5
5
  class ObjectShadow
6
- VERSION = "1.1.1"
6
+ VERSION = "1.1.2"
7
7
  end
@@ -16,6 +16,7 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
+ gem.metadata = { "rubygems_mfa_required" => "true" }
19
20
 
20
- gem.required_ruby_version = ">= 2.0", "< 4.0"
21
+ gem.required_ruby_version = ">= 2.0"
21
22
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: object_shadow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2020-12-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: provides a simple convenient API for accessing an object's state.
14
13
  email:
@@ -40,8 +39,8 @@ files:
40
39
  homepage: https://github.com/janlelis/object_shadow
41
40
  licenses:
42
41
  - MIT
43
- metadata: {}
44
- post_install_message:
42
+ metadata:
43
+ rubygems_mfa_required: 'true'
45
44
  rdoc_options: []
46
45
  require_paths:
47
46
  - lib
@@ -50,17 +49,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
50
49
  - - ">="
51
50
  - !ruby/object:Gem::Version
52
51
  version: '2.0'
53
- - - "<"
54
- - !ruby/object:Gem::Version
55
- version: '4.0'
56
52
  required_rubygems_version: !ruby/object:Gem::Requirement
57
53
  requirements:
58
54
  - - ">="
59
55
  - !ruby/object:Gem::Version
60
56
  version: '0'
61
57
  requirements: []
62
- rubygems_version: 3.2.3
63
- signing_key:
58
+ rubygems_version: 4.0.3
64
59
  specification_version: 4
65
60
  summary: Metaprogramming Level 2
66
61
  test_files: