refrigerator 1.5.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a13b3f1a551e9a9f1eb46837702f4cf7c9055648c1cf1b5c40c596fb83b2b61
4
- data.tar.gz: fedc3a8ffa7f3020bdb7b87eeab6d980dee983c8b06e57bff77886e8554f46d8
3
+ metadata.gz: 186c03b5ec32b85e8a2185d748157aba36e487a9c8366680597a2ebb4f336e07
4
+ data.tar.gz: 4d6e2c5eb180e09d5e5a75eb23782a875e25847b80c723f8ab13866071552422
5
5
  SHA512:
6
- metadata.gz: 940bf5dde749c52db0e677538e45aaa511c91e2ace38b2656eca844a6f84dd8986533619d77432f51716f627589062f98c282c931679531b40a83a08d9992f7a
7
- data.tar.gz: 79f0095f5e891c54989444fec0914d64a9f444e5cd977e16f469962549582327d9086ef2030431cb36c94a77d80daf38c8945e70b4a07db81de6dee8eb696ee0
6
+ metadata.gz: a8434dcb03c19ff122b0d5adad2c975b1bdeaed0a59a360b2ca81e2e5bb278df2384455073226cfa650e815cb658567c492be6277c6b8a9b23cdc0e5210a6326
7
+ data.tar.gz: 8013f398f49d68ee64534cdc04f913eab63d6aca56334860041a06e1b8bb971f5e01c0388083f1d15f0b33b3061224aeb590d2899dad76baf6acaad638847241
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.5.1 (2023-01-13)
2
+
3
+ * Fix the support new classes and modules in Ruby 3.2 (jeremyevans)
4
+
1
5
  === 1.5.0 (2023-01-11)
2
6
 
3
7
  * Support new classes and modules in Ruby 3.2 (jeremyevans)
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2022 Jeremy Evans
1
+ Copyright (c) 2017-2023 Jeremy Evans
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to
data/README.rdoc CHANGED
@@ -164,6 +164,8 @@ code similar to:
164
164
 
165
165
  ObjectSpace.each_object(Module){|m| p m.name}
166
166
 
167
+ In addition, the +version_int+ variable in +refrigerator.rb+ needs to be updated.
168
+
167
169
  = License
168
170
 
169
171
  MIT
data/lib/refrigerator.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  module Refrigerator
3
3
  version_int = RUBY_VERSION[0..2].sub('.', '').to_i
4
4
  # :nocov:
5
- version_int = 31 if version_int > 31
5
+ version_int = 32 if version_int > 32
6
6
  # :nocov:
7
7
 
8
8
  # Array of strings containing class or module names.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: refrigerator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Evans
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-11 00:00:00.000000000 Z
11
+ date: 2023-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest