refrigerator 1.3.0 → 1.4.0

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: 7bf45b71b05654c62898e58d498f8f44b61975bef8304e5f90c65c264b9fd72e
4
- data.tar.gz: 4187851816f84847a54382254a259c8ef40c56c781c43567ded9be6692d91df3
3
+ metadata.gz: 39830c719366bd0e689b7a784879bd834e20f9f410a01aee24adb3bd5b7368ed
4
+ data.tar.gz: 7fd6dda21287843f916a63283a2aa9178aec16c89fff5c6bbd24b98e9d14ad67
5
5
  SHA512:
6
- metadata.gz: 0b39ffe287e5d5642d12188106a1d1fe2a5e743fb8402796b77ea5d9c2e05d894e780cccaa94e77b351c5804ed725b61df625c26047095e965d3650f35a9b9c7
7
- data.tar.gz: d425c8a3bbb26ddaacadc32c68cac079839ee0633ccdf862b08fa60330aa2f433b352960235b95e1cb5c105798b1f77418f7e9f2b1135b28e2fb208d9eb53bbe
6
+ metadata.gz: ae3d653e46d339c4b50417de2fff4bb8787c7595fc73ca5d66434533419a6a8afdf262dcac33b8b1e85f9828bcc414a5b96ca100f15fb52c1ca15c54a3aeac5c
7
+ data.tar.gz: 9a480c31c4a4ffccc58b3ebae576347eae7e70a39ba78978bda81fad767ad098ad2a367d26edcec1b39577a956190a63640c349a8016f3bc0284e38a638bdd82
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.4.0 (2021-12-25)
2
+
3
+ * Support new classes and modules in Ruby 3.1 (jeremyevans)
4
+
5
+ * Support new classes and modules in Ruby 3.0 (jeremyevans)
6
+
1
7
  === 1.3.0 (2020-11-17)
2
8
 
3
9
  * Support new classes and modules in Ruby 2.7 (jeremyevans)
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2020 Jeremy Evans
1
+ Copyright (c) 2017-2021 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
@@ -80,15 +80,15 @@ And an example using Roda, a ruby web toolkit:
80
80
  :classes=>[:Roda]
81
81
 
82
82
  Note that many stdlib libraries will fail +check_require+ unless you use the
83
- :exclude option, for example, +set+:
83
+ :exclude option, for example, +date+:
84
84
 
85
- Refrigerator.check_require 'set',
86
- :classes=>[:Set, [:SortedSet, :Set]]
87
- # Fails due to Enumerable#to_set addition
85
+ Refrigerator.check_require 'date',
86
+ :classes=>[:Date, [:DateTime, :Date]]
87
+ # Fails due to Time#to_date addition
88
88
 
89
- Refrigerator.check_require 'set',
90
- :classes=>[:Set, [:SortedSet, :Set]],
91
- :exclude=>['Enumerable']
89
+ Refrigerator.check_require 'date',
90
+ :classes=>[:Date, [:DateTime, :Date]],
91
+ :exclude=>['Time']
92
92
  # => true
93
93
 
94
94
  === bin/check_require
data/Rakefile CHANGED
@@ -20,7 +20,7 @@ end
20
20
 
21
21
  desc "Run specs"
22
22
  task :spec do
23
- sh "#{FileUtils::RUBY} test/refrigerator_test.rb"
23
+ sh "#{FileUtils::RUBY} #{"-w" if RUBY_VERSION >= '3'} test/refrigerator_test.rb"
24
24
  end
25
25
 
26
26
  task :default => :spec
data/lib/refrigerator.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # Refrigerator allows for easily freezing core classes and modules.
2
2
  module Refrigerator
3
3
  version_int = RUBY_VERSION[0..2].sub('.', '').to_i
4
- version_int = 27 if version_int > 27
4
+ version_int = 31 if version_int > 31
5
5
 
6
6
  # Array of strings containing class or module names.
7
7
  CORE_MODULES = File.read(File.expand_path(File.join(File.expand_path(__FILE__), "../../module_names/#{version_int}.txt"))).
data/module_names/26.txt CHANGED
@@ -150,7 +150,6 @@ GC
150
150
  GC::Profiler
151
151
  Gem
152
152
  Gem::BasicSpecification
153
- Gem::BundlerVersionFinder
154
153
  Gem::CommandLineError
155
154
  Gem::ConflictError
156
155
  Gem::Dependency
@@ -0,0 +1,313 @@
1
+ ARGF.class
2
+ ArgumentError
3
+ Array
4
+ BasicObject
5
+ Binding
6
+ Class
7
+ ClosedQueueError
8
+ Comparable
9
+ Complex
10
+ Complex::compatible
11
+ DidYouMean
12
+ DidYouMean::ClassNameChecker
13
+ DidYouMean::ClassNameChecker::ClassName
14
+ DidYouMean::Correctable
15
+ DidYouMean::Jaro
16
+ DidYouMean::JaroWinkler
17
+ DidYouMean::KeyErrorChecker
18
+ DidYouMean::Levenshtein
19
+ DidYouMean::MethodNameChecker
20
+ DidYouMean::NullChecker
21
+ DidYouMean::PlainFormatter
22
+ DidYouMean::RequirePathChecker
23
+ DidYouMean::SpellChecker
24
+ DidYouMean::TreeSpellChecker
25
+ DidYouMean::VariableNameChecker
26
+ Dir
27
+ EOFError
28
+ Encoding
29
+ Encoding::CompatibilityError
30
+ Encoding::Converter
31
+ Encoding::ConverterNotFoundError
32
+ Encoding::InvalidByteSequenceError
33
+ Encoding::UndefinedConversionError
34
+ EncodingError
35
+ Enumerable
36
+ Enumerator
37
+ Enumerator::ArithmeticSequence
38
+ Enumerator::Chain
39
+ Enumerator::Generator
40
+ Enumerator::Lazy
41
+ Enumerator::Producer
42
+ Enumerator::Yielder
43
+ Errno
44
+ Errno::E2BIG
45
+ Errno::EACCES
46
+ Errno::EADDRINUSE
47
+ Errno::EADDRNOTAVAIL
48
+ Errno::EAFNOSUPPORT
49
+ Errno::EAGAIN
50
+ Errno::EALREADY
51
+ Errno::EAUTH
52
+ Errno::EBADF
53
+ Errno::EBADMSG
54
+ Errno::EBADRPC
55
+ Errno::EBUSY
56
+ Errno::ECANCELED
57
+ Errno::ECHILD
58
+ Errno::ECONNABORTED
59
+ Errno::ECONNREFUSED
60
+ Errno::ECONNRESET
61
+ Errno::EDEADLK
62
+ Errno::EDESTADDRREQ
63
+ Errno::EDOM
64
+ Errno::EDQUOT
65
+ Errno::EEXIST
66
+ Errno::EFAULT
67
+ Errno::EFBIG
68
+ Errno::EFTYPE
69
+ Errno::EHOSTDOWN
70
+ Errno::EHOSTUNREACH
71
+ Errno::EIDRM
72
+ Errno::EILSEQ
73
+ Errno::EINPROGRESS
74
+ Errno::EINTR
75
+ Errno::EINVAL
76
+ Errno::EIO
77
+ Errno::EIPSEC
78
+ Errno::EISCONN
79
+ Errno::EISDIR
80
+ Errno::ELAST
81
+ Errno::ELOOP
82
+ Errno::EMEDIUMTYPE
83
+ Errno::EMFILE
84
+ Errno::EMLINK
85
+ Errno::EMSGSIZE
86
+ Errno::ENAMETOOLONG
87
+ Errno::ENEEDAUTH
88
+ Errno::ENETDOWN
89
+ Errno::ENETRESET
90
+ Errno::ENETUNREACH
91
+ Errno::ENFILE
92
+ Errno::ENOATTR
93
+ Errno::ENOBUFS
94
+ Errno::ENODEV
95
+ Errno::ENOENT
96
+ Errno::ENOEXEC
97
+ Errno::ENOLCK
98
+ Errno::ENOMEDIUM
99
+ Errno::ENOMEM
100
+ Errno::ENOMSG
101
+ Errno::ENOPROTOOPT
102
+ Errno::ENOSPC
103
+ Errno::ENOSYS
104
+ Errno::ENOTBLK
105
+ Errno::ENOTCONN
106
+ Errno::ENOTDIR
107
+ Errno::ENOTEMPTY
108
+ Errno::ENOTRECOVERABLE
109
+ Errno::ENOTSOCK
110
+ Errno::ENOTSUP
111
+ Errno::ENOTTY
112
+ Errno::ENXIO
113
+ Errno::EOPNOTSUPP
114
+ Errno::EOVERFLOW
115
+ Errno::EOWNERDEAD
116
+ Errno::EPERM
117
+ Errno::EPFNOSUPPORT
118
+ Errno::EPIPE
119
+ Errno::EPROCLIM
120
+ Errno::EPROCUNAVAIL
121
+ Errno::EPROGMISMATCH
122
+ Errno::EPROGUNAVAIL
123
+ Errno::EPROTONOSUPPORT
124
+ Errno::EPROTOTYPE
125
+ Errno::ERANGE
126
+ Errno::EREMOTE
127
+ Errno::EROFS
128
+ Errno::ERPCMISMATCH
129
+ Errno::ESHUTDOWN
130
+ Errno::ESOCKTNOSUPPORT
131
+ Errno::ESPIPE
132
+ Errno::ESRCH
133
+ Errno::ESTALE
134
+ Errno::ETIMEDOUT
135
+ Errno::ETOOMANYREFS
136
+ Errno::ETXTBSY
137
+ Errno::EUSERS
138
+ Errno::EXDEV
139
+ Errno::NOERROR
140
+ Exception
141
+ FalseClass
142
+ Fiber
143
+ FiberError
144
+ File
145
+ File::Constants
146
+ File::Stat
147
+ FileTest
148
+ Float
149
+ FloatDomainError
150
+ FrozenError
151
+ GC
152
+ GC::Profiler
153
+ Gem
154
+ Gem::BasicSpecification
155
+ Gem::CommandLineError
156
+ Gem::ConflictError
157
+ Gem::ConsoleUI
158
+ Gem::DefaultUserInteraction
159
+ Gem::Dependency
160
+ Gem::DependencyError
161
+ Gem::DependencyRemovalException
162
+ Gem::DependencyResolutionError
163
+ Gem::Deprecate
164
+ Gem::DocumentError
165
+ Gem::EndOfYAMLException
166
+ Gem::ErrorReason
167
+ Gem::Exception
168
+ Gem::FilePermissionError
169
+ Gem::FormatException
170
+ Gem::GemNotFoundException
171
+ Gem::GemNotInHomeException
172
+ Gem::ImpossibleDependenciesError
173
+ Gem::InstallError
174
+ Gem::InvalidSpecificationException
175
+ Gem::List
176
+ Gem::LoadError
177
+ Gem::MissingSpecError
178
+ Gem::MissingSpecVersionError
179
+ Gem::OperationNotSupportedError
180
+ Gem::PathSupport
181
+ Gem::Platform
182
+ Gem::PlatformMismatch
183
+ Gem::RemoteError
184
+ Gem::RemoteInstallationCancelled
185
+ Gem::RemoteInstallationSkipped
186
+ Gem::RemoteSourceException
187
+ Gem::Requirement
188
+ Gem::Requirement::BadRequirementError
189
+ Gem::RubyVersionMismatch
190
+ Gem::RuntimeRequirementNotMetError
191
+ Gem::SilentUI
192
+ Gem::SourceFetchProblem
193
+ Gem::SpecificGemNotFoundException
194
+ Gem::Specification
195
+ Gem::SpecificationPolicy
196
+ Gem::StreamUI
197
+ Gem::StreamUI::SilentDownloadReporter
198
+ Gem::StreamUI::SilentProgressReporter
199
+ Gem::StreamUI::SimpleProgressReporter
200
+ Gem::StreamUI::ThreadedDownloadReporter
201
+ Gem::StreamUI::VerboseProgressReporter
202
+ Gem::StubSpecification
203
+ Gem::StubSpecification::StubLine
204
+ Gem::SystemExitException
205
+ Gem::Text
206
+ Gem::UninstallError
207
+ Gem::UnsatisfiableDependencyError
208
+ Gem::UserInteraction
209
+ Gem::Util
210
+ Gem::VerificationError
211
+ Gem::Version
212
+ Hash
213
+ IO
214
+ IO::EAGAINWaitReadable
215
+ IO::EAGAINWaitWritable
216
+ IO::EINPROGRESSWaitReadable
217
+ IO::EINPROGRESSWaitWritable
218
+ IO::WaitReadable
219
+ IO::WaitWritable
220
+ IOError
221
+ IndexError
222
+ Integer
223
+ Interrupt
224
+ Kernel
225
+ KeyError
226
+ LoadError
227
+ LocalJumpError
228
+ Marshal
229
+ MatchData
230
+ Math
231
+ Math::DomainError
232
+ Method
233
+ Module
234
+ Monitor
235
+ MonitorMixin
236
+ MonitorMixin::ConditionVariable
237
+ NameError
238
+ NameError::message
239
+ NilClass
240
+ NoMatchingPatternError
241
+ NoMemoryError
242
+ NoMethodError
243
+ NotImplementedError
244
+ Numeric
245
+ Object
246
+ ObjectSpace
247
+ ObjectSpace::WeakMap
248
+ Proc
249
+ Process
250
+ Process::GID
251
+ Process::Status
252
+ Process::Sys
253
+ Process::Tms
254
+ Process::UID
255
+ Process::Waiter
256
+ Ractor
257
+ Ractor::ClosedError
258
+ Ractor::Error
259
+ Ractor::IsolationError
260
+ Ractor::MovedError
261
+ Ractor::MovedObject
262
+ Ractor::RemoteError
263
+ Ractor::UnsafeError
264
+ Random
265
+ Random::Base
266
+ Random::Formatter
267
+ Range
268
+ RangeError
269
+ Rational
270
+ Rational::compatible
271
+ RbConfig
272
+ Regexp
273
+ RegexpError
274
+ RubyVM
275
+ RubyVM::AbstractSyntaxTree
276
+ RubyVM::AbstractSyntaxTree::Node
277
+ RubyVM::InstructionSequence
278
+ RubyVM::MJIT
279
+ RuntimeError
280
+ ScriptError
281
+ SecurityError
282
+ Signal
283
+ SignalException
284
+ StandardError
285
+ StopIteration
286
+ String
287
+ Struct
288
+ Symbol
289
+ SyntaxError
290
+ SystemCallError
291
+ SystemExit
292
+ SystemStackError
293
+ Thread
294
+ Thread::Backtrace
295
+ Thread::Backtrace::Location
296
+ Thread::ConditionVariable
297
+ Thread::Mutex
298
+ Thread::Queue
299
+ Thread::SizedQueue
300
+ ThreadError
301
+ ThreadGroup
302
+ Time
303
+ Time::tm
304
+ TracePoint
305
+ TrueClass
306
+ TypeError
307
+ UnboundMethod
308
+ UncaughtThrowError
309
+ UnicodeNormalize
310
+ Warning
311
+ Warning::buffer
312
+ ZeroDivisionError
313
+ fatal
@@ -0,0 +1,330 @@
1
+ ARGF.class
2
+ ArgumentError
3
+ Array
4
+ BasicObject
5
+ Binding
6
+ Class
7
+ ClosedQueueError
8
+ Comparable
9
+ Complex
10
+ Complex::compatible
11
+ DidYouMean
12
+ DidYouMean::ClassNameChecker
13
+ DidYouMean::ClassNameChecker::ClassName
14
+ DidYouMean::Correctable
15
+ DidYouMean::DeprecatedMapping
16
+ DidYouMean::Formatter
17
+ DidYouMean::Jaro
18
+ DidYouMean::JaroWinkler
19
+ DidYouMean::KeyErrorChecker
20
+ DidYouMean::Levenshtein
21
+ DidYouMean::MethodNameChecker
22
+ DidYouMean::NullChecker
23
+ DidYouMean::PatternKeyNameChecker
24
+ DidYouMean::RequirePathChecker
25
+ DidYouMean::SpellChecker
26
+ DidYouMean::TreeSpellChecker
27
+ DidYouMean::VariableNameChecker
28
+ Dir
29
+ EOFError
30
+ Encoding
31
+ Encoding::CompatibilityError
32
+ Encoding::Converter
33
+ Encoding::ConverterNotFoundError
34
+ Encoding::InvalidByteSequenceError
35
+ Encoding::UndefinedConversionError
36
+ EncodingError
37
+ Enumerable
38
+ Enumerator
39
+ Enumerator::ArithmeticSequence
40
+ Enumerator::Chain
41
+ Enumerator::Generator
42
+ Enumerator::Lazy
43
+ Enumerator::Producer
44
+ Enumerator::Yielder
45
+ Errno
46
+ Errno::E2BIG
47
+ Errno::EACCES
48
+ Errno::EADDRINUSE
49
+ Errno::EADDRNOTAVAIL
50
+ Errno::EAFNOSUPPORT
51
+ Errno::EAGAIN
52
+ Errno::EALREADY
53
+ Errno::EAUTH
54
+ Errno::EBADF
55
+ Errno::EBADMSG
56
+ Errno::EBADRPC
57
+ Errno::EBUSY
58
+ Errno::ECANCELED
59
+ Errno::ECHILD
60
+ Errno::ECONNABORTED
61
+ Errno::ECONNREFUSED
62
+ Errno::ECONNRESET
63
+ Errno::EDEADLK
64
+ Errno::EDESTADDRREQ
65
+ Errno::EDOM
66
+ Errno::EDQUOT
67
+ Errno::EEXIST
68
+ Errno::EFAULT
69
+ Errno::EFBIG
70
+ Errno::EFTYPE
71
+ Errno::EHOSTDOWN
72
+ Errno::EHOSTUNREACH
73
+ Errno::EIDRM
74
+ Errno::EILSEQ
75
+ Errno::EINPROGRESS
76
+ Errno::EINTR
77
+ Errno::EINVAL
78
+ Errno::EIO
79
+ Errno::EIPSEC
80
+ Errno::EISCONN
81
+ Errno::EISDIR
82
+ Errno::ELAST
83
+ Errno::ELOOP
84
+ Errno::EMEDIUMTYPE
85
+ Errno::EMFILE
86
+ Errno::EMLINK
87
+ Errno::EMSGSIZE
88
+ Errno::ENAMETOOLONG
89
+ Errno::ENEEDAUTH
90
+ Errno::ENETDOWN
91
+ Errno::ENETRESET
92
+ Errno::ENETUNREACH
93
+ Errno::ENFILE
94
+ Errno::ENOATTR
95
+ Errno::ENOBUFS
96
+ Errno::ENODEV
97
+ Errno::ENOENT
98
+ Errno::ENOEXEC
99
+ Errno::ENOLCK
100
+ Errno::ENOMEDIUM
101
+ Errno::ENOMEM
102
+ Errno::ENOMSG
103
+ Errno::ENOPROTOOPT
104
+ Errno::ENOSPC
105
+ Errno::ENOSYS
106
+ Errno::ENOTBLK
107
+ Errno::ENOTCONN
108
+ Errno::ENOTDIR
109
+ Errno::ENOTEMPTY
110
+ Errno::ENOTRECOVERABLE
111
+ Errno::ENOTSOCK
112
+ Errno::ENOTSUP
113
+ Errno::ENOTTY
114
+ Errno::ENXIO
115
+ Errno::EOPNOTSUPP
116
+ Errno::EOVERFLOW
117
+ Errno::EOWNERDEAD
118
+ Errno::EPERM
119
+ Errno::EPFNOSUPPORT
120
+ Errno::EPIPE
121
+ Errno::EPROCLIM
122
+ Errno::EPROCUNAVAIL
123
+ Errno::EPROGMISMATCH
124
+ Errno::EPROGUNAVAIL
125
+ Errno::EPROTONOSUPPORT
126
+ Errno::EPROTOTYPE
127
+ Errno::ERANGE
128
+ Errno::EREMOTE
129
+ Errno::EROFS
130
+ Errno::ERPCMISMATCH
131
+ Errno::ESHUTDOWN
132
+ Errno::ESOCKTNOSUPPORT
133
+ Errno::ESPIPE
134
+ Errno::ESRCH
135
+ Errno::ESTALE
136
+ Errno::ETIMEDOUT
137
+ Errno::ETOOMANYREFS
138
+ Errno::ETXTBSY
139
+ Errno::EUSERS
140
+ Errno::EXDEV
141
+ Errno::NOERROR
142
+ ErrorHighlight
143
+ ErrorHighlight::CoreExt
144
+ ErrorHighlight::DefaultFormatter
145
+ ErrorHighlight::Spotter
146
+ ErrorHighlight::Spotter::NonAscii
147
+ Exception
148
+ FalseClass
149
+ Fiber
150
+ FiberError
151
+ File
152
+ File::Constants
153
+ File::Stat
154
+ FileTest
155
+ Float
156
+ FloatDomainError
157
+ FrozenError
158
+ GC
159
+ GC::Profiler
160
+ Gem
161
+ Gem::BasicSpecification
162
+ Gem::CommandLineError
163
+ Gem::ConflictError
164
+ Gem::ConsoleUI
165
+ Gem::DefaultUserInteraction
166
+ Gem::Dependency
167
+ Gem::DependencyError
168
+ Gem::DependencyRemovalException
169
+ Gem::DependencyResolutionError
170
+ Gem::Deprecate
171
+ Gem::DocumentError
172
+ Gem::EndOfYAMLException
173
+ Gem::ErrorReason
174
+ Gem::Exception
175
+ Gem::FilePermissionError
176
+ Gem::FormatException
177
+ Gem::GemNotFoundException
178
+ Gem::GemNotInHomeException
179
+ Gem::ImpossibleDependenciesError
180
+ Gem::InstallError
181
+ Gem::InvalidSpecificationException
182
+ Gem::List
183
+ Gem::LoadError
184
+ Gem::MissingSpecError
185
+ Gem::MissingSpecVersionError
186
+ Gem::OperationNotSupportedError
187
+ Gem::PathSupport
188
+ Gem::Platform
189
+ Gem::PlatformMismatch
190
+ Gem::RemoteError
191
+ Gem::RemoteInstallationCancelled
192
+ Gem::RemoteInstallationSkipped
193
+ Gem::RemoteSourceException
194
+ Gem::Requirement
195
+ Gem::Requirement::BadRequirementError
196
+ Gem::RubyVersionMismatch
197
+ Gem::RuntimeRequirementNotMetError
198
+ Gem::SilentUI
199
+ Gem::SourceFetchProblem
200
+ Gem::SpecificGemNotFoundException
201
+ Gem::Specification
202
+ Gem::SpecificationPolicy
203
+ Gem::StreamUI
204
+ Gem::StreamUI::SilentDownloadReporter
205
+ Gem::StreamUI::SilentProgressReporter
206
+ Gem::StreamUI::SimpleProgressReporter
207
+ Gem::StreamUI::ThreadedDownloadReporter
208
+ Gem::StreamUI::VerboseProgressReporter
209
+ Gem::StubSpecification
210
+ Gem::StubSpecification::StubLine
211
+ Gem::SystemExitException
212
+ Gem::Text
213
+ Gem::UninstallError
214
+ Gem::UnknownCommandError
215
+ Gem::UnknownCommandSpellChecker
216
+ Gem::UnsatisfiableDependencyError
217
+ Gem::UserInteraction
218
+ Gem::Util
219
+ Gem::VerificationError
220
+ Gem::Version
221
+ Hash
222
+ IO
223
+ IO::Buffer
224
+ IO::Buffer::AccessError
225
+ IO::Buffer::AllocationError
226
+ IO::Buffer::InvalidatedError
227
+ IO::Buffer::LockedError
228
+ IO::EAGAINWaitReadable
229
+ IO::EAGAINWaitWritable
230
+ IO::EINPROGRESSWaitReadable
231
+ IO::EINPROGRESSWaitWritable
232
+ IO::WaitReadable
233
+ IO::WaitWritable
234
+ IOError
235
+ IndexError
236
+ Integer
237
+ Interrupt
238
+ Kernel
239
+ KeyError
240
+ LoadError
241
+ LocalJumpError
242
+ Marshal
243
+ MatchData
244
+ Math
245
+ Math::DomainError
246
+ Method
247
+ Module
248
+ Monitor
249
+ MonitorMixin
250
+ MonitorMixin::ConditionVariable
251
+ NameError
252
+ NameError::message
253
+ NilClass
254
+ NoMatchingPatternError
255
+ NoMatchingPatternKeyError
256
+ NoMemoryError
257
+ NoMethodError
258
+ NotImplementedError
259
+ Numeric
260
+ Object
261
+ ObjectSpace
262
+ ObjectSpace::WeakMap
263
+ Proc
264
+ Process
265
+ Process::GID
266
+ Process::Status
267
+ Process::Sys
268
+ Process::Tms
269
+ Process::UID
270
+ Process::Waiter
271
+ Ractor
272
+ Ractor::ClosedError
273
+ Ractor::Error
274
+ Ractor::IsolationError
275
+ Ractor::MovedError
276
+ Ractor::MovedObject
277
+ Ractor::RemoteError
278
+ Ractor::UnsafeError
279
+ Random
280
+ Random::Base
281
+ Random::Formatter
282
+ Range
283
+ RangeError
284
+ Rational
285
+ Rational::compatible
286
+ RbConfig
287
+ Refinement
288
+ Regexp
289
+ RegexpError
290
+ RubyVM
291
+ RubyVM::AbstractSyntaxTree
292
+ RubyVM::AbstractSyntaxTree::Node
293
+ RubyVM::InstructionSequence
294
+ RubyVM::MJIT
295
+ RubyVM::YJIT
296
+ RuntimeError
297
+ ScriptError
298
+ SecurityError
299
+ Signal
300
+ SignalException
301
+ StandardError
302
+ StopIteration
303
+ String
304
+ Struct
305
+ Symbol
306
+ SyntaxError
307
+ SystemCallError
308
+ SystemExit
309
+ SystemStackError
310
+ Thread
311
+ Thread::Backtrace
312
+ Thread::Backtrace::Location
313
+ Thread::ConditionVariable
314
+ Thread::Mutex
315
+ Thread::Queue
316
+ Thread::SizedQueue
317
+ ThreadError
318
+ ThreadGroup
319
+ Time
320
+ Time::tm
321
+ TracePoint
322
+ TrueClass
323
+ TypeError
324
+ UnboundMethod
325
+ UncaughtThrowError
326
+ UnicodeNormalize
327
+ Warning
328
+ Warning::buffer
329
+ ZeroDivisionError
330
+ fatal
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.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Evans
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-17 00:00:00.000000000 Z
11
+ date: 2021-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -69,10 +69,16 @@ files:
69
69
  - module_names/25.txt
70
70
  - module_names/26.txt
71
71
  - module_names/27.txt
72
+ - module_names/30.txt
73
+ - module_names/31.txt
72
74
  homepage: http://github.com/jeremyevans/ruby-refrigerator
73
75
  licenses:
74
76
  - MIT
75
- metadata: {}
77
+ metadata:
78
+ bug_tracker_uri: https://github.com/jeremyevans/ruby-refrigerator/issues
79
+ changelog_uri: https://github.com/jeremyevans/ruby-refrigerator/blob/master/CHANGELOG
80
+ mailing_list_uri: https://github.com/jeremyevans/ruby-refrigerator/discussions
81
+ source_code_uri: https://github.com/jeremyevans/ruby-refrigerator
76
82
  post_install_message:
77
83
  rdoc_options:
78
84
  - "--quiet"
@@ -95,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
101
  - !ruby/object:Gem::Version
96
102
  version: '0'
97
103
  requirements: []
98
- rubygems_version: 3.1.4
104
+ rubygems_version: 3.3.3
99
105
  signing_key:
100
106
  specification_version: 4
101
107
  summary: Freeze all core ruby classes