refrigerator 1.1.0 → 1.4.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: 823960b7e2afbc34ba1a761c77040e0483c5e21a633c80883b7a70321c8d92de
4
- data.tar.gz: d8de32d586a6cea41df3e12e95ee4c8721db76f48ae0352a18ae151eecbe6c92
3
+ metadata.gz: f50c5cac70517434571dcc50228ce88acf013de728fd3cbf4bf4f46a73141ff6
4
+ data.tar.gz: 79189cfdf9a9d05b7142c4c2e1f4a121ac5af4e948c97fd096a904345bcb3d03
5
5
  SHA512:
6
- metadata.gz: c4438c2c765593779fc7d323a01c53c7aa96fe588d036f8c60229172022b0ba60b7f016664ca96ed15cc85e9e4e1c29dfcc26bf3e2190c98ba406b3048fbb25f
7
- data.tar.gz: c80bf4bbade2499a4c00e5ebf39d00fa79ac9e67e2c6bd85484c1cab2b93b0d03f691e16a37a706ea72d4b2b6005813b7f0b31b2021f53e36c40bf86c6d83c6b
6
+ metadata.gz: 4098cb941aa128fcf8af272f5f800141c2bb284015306ac7792016326cb3c788ddada67e48d10d4810f7b48b82cb7bc9824165dd26ddfc66fbd8c31ca2bc1f93
7
+ data.tar.gz: bd17d0295721f3605e19b6460ad10ba3955380616fe3a1b855c1b35ccf1936e559f31d1e23db98b477a1e5288eb51e89850e15b468b1c3ef3517b48af2f1ad1a
data/CHANGELOG CHANGED
@@ -1,4 +1,24 @@
1
- === master
1
+ === 1.4.1 (2022-02-18)
2
+
3
+ * Freeze constants in reverse order, fixes issues with rubygems starting in Ruby 3.1.1 (jeremyevans)
4
+
5
+ === 1.4.0 (2021-12-25)
6
+
7
+ * Support new classes and modules in Ruby 3.1 (jeremyevans)
8
+
9
+ * Support new classes and modules in Ruby 3.0 (jeremyevans)
10
+
11
+ === 1.3.0 (2020-11-17)
12
+
13
+ * Support new classes and modules in Ruby 2.7 (jeremyevans)
14
+
15
+ === 1.2.0 (2019-04-11)
16
+
17
+ * Support new classes and modules in Ruby 2.6 (jeremyevans)
18
+
19
+ === 1.1.0 (2018-02-16)
20
+
21
+ * Support new classes and modules in Ruby 2.5 (jeremyevans)
2
22
 
3
23
  * Work when the input field separator is changed from the default (jeremyevans) (#1)
4
24
 
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017 Jeremy Evans
1
+ Copyright (c) 2017-2022 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,13 +1,14 @@
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 = 25 if version_int > 25
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"))).
8
8
  split(/\s+/).
9
9
  select{|m| eval("defined?(#{m})")}.
10
10
  each(&:freeze).
11
+ reverse.
11
12
  freeze
12
13
 
13
14
  # Default frozen options hash
@@ -31,7 +32,7 @@ module Refrigerator
31
32
  Array(opts[:depends]).each{|f| require f}
32
33
  Array(opts[:modules]).each{|m| Object.const_set(m, Module.new)}
33
34
  Array(opts[:classes]).each{|c, *sc| Object.const_set(c, Class.new(sc.empty? ? Object : eval(sc.first.to_s)))}
34
- freeze_core(:except=>%w'Gem Gem::Specification'+Array(opts[:exclude]))
35
+ freeze_core(:except=>%w'Gem Gem::Specification Gem::Deprecate'+Array(opts[:exclude]))
35
36
  require file
36
37
  end
37
38
 
@@ -0,0 +1,314 @@
1
+ ARGF.class
2
+ ArgumentError
3
+ Array
4
+ BasicObject
5
+ Binding
6
+ Class
7
+ ClosedQueueError
8
+ Comparable
9
+ Complex
10
+ Complex::compatible
11
+ Delegator
12
+ DidYouMean
13
+ DidYouMean::ClassNameChecker
14
+ DidYouMean::ClassNameChecker::ClassName
15
+ DidYouMean::Correctable
16
+ DidYouMean::Jaro
17
+ DidYouMean::JaroWinkler
18
+ DidYouMean::KeyErrorChecker
19
+ DidYouMean::Levenshtein
20
+ DidYouMean::MethodNameChecker
21
+ DidYouMean::NullChecker
22
+ DidYouMean::PlainFormatter
23
+ DidYouMean::SpellChecker
24
+ DidYouMean::VariableNameChecker
25
+ Dir
26
+ EOFError
27
+ Encoding
28
+ Encoding::CompatibilityError
29
+ Encoding::Converter
30
+ Encoding::ConverterNotFoundError
31
+ Encoding::InvalidByteSequenceError
32
+ Encoding::UndefinedConversionError
33
+ EncodingError
34
+ Enumerable
35
+ Enumerator
36
+ Enumerator::ArithmeticSequence
37
+ Enumerator::Chain
38
+ Enumerator::Generator
39
+ Enumerator::Lazy
40
+ Enumerator::Yielder
41
+ Errno
42
+ Errno::E2BIG
43
+ Errno::EACCES
44
+ Errno::EADDRINUSE
45
+ Errno::EADDRNOTAVAIL
46
+ Errno::EAFNOSUPPORT
47
+ Errno::EAGAIN
48
+ Errno::EALREADY
49
+ Errno::EAUTH
50
+ Errno::EBADF
51
+ Errno::EBADMSG
52
+ Errno::EBADRPC
53
+ Errno::EBUSY
54
+ Errno::ECANCELED
55
+ Errno::ECHILD
56
+ Errno::ECONNABORTED
57
+ Errno::ECONNREFUSED
58
+ Errno::ECONNRESET
59
+ Errno::EDEADLK
60
+ Errno::EDESTADDRREQ
61
+ Errno::EDOM
62
+ Errno::EDQUOT
63
+ Errno::EEXIST
64
+ Errno::EFAULT
65
+ Errno::EFBIG
66
+ Errno::EFTYPE
67
+ Errno::EHOSTDOWN
68
+ Errno::EHOSTUNREACH
69
+ Errno::EIDRM
70
+ Errno::EILSEQ
71
+ Errno::EINPROGRESS
72
+ Errno::EINTR
73
+ Errno::EINVAL
74
+ Errno::EIO
75
+ Errno::EIPSEC
76
+ Errno::EISCONN
77
+ Errno::EISDIR
78
+ Errno::ELAST
79
+ Errno::ELOOP
80
+ Errno::EMEDIUMTYPE
81
+ Errno::EMFILE
82
+ Errno::EMLINK
83
+ Errno::EMSGSIZE
84
+ Errno::ENAMETOOLONG
85
+ Errno::ENEEDAUTH
86
+ Errno::ENETDOWN
87
+ Errno::ENETRESET
88
+ Errno::ENETUNREACH
89
+ Errno::ENFILE
90
+ Errno::ENOATTR
91
+ Errno::ENOBUFS
92
+ Errno::ENODEV
93
+ Errno::ENOENT
94
+ Errno::ENOEXEC
95
+ Errno::ENOLCK
96
+ Errno::ENOMEDIUM
97
+ Errno::ENOMEM
98
+ Errno::ENOMSG
99
+ Errno::ENOPROTOOPT
100
+ Errno::ENOSPC
101
+ Errno::ENOSYS
102
+ Errno::ENOTBLK
103
+ Errno::ENOTCONN
104
+ Errno::ENOTDIR
105
+ Errno::ENOTEMPTY
106
+ Errno::ENOTRECOVERABLE
107
+ Errno::ENOTSOCK
108
+ Errno::ENOTSUP
109
+ Errno::ENOTTY
110
+ Errno::ENXIO
111
+ Errno::EOPNOTSUPP
112
+ Errno::EOVERFLOW
113
+ Errno::EOWNERDEAD
114
+ Errno::EPERM
115
+ Errno::EPFNOSUPPORT
116
+ Errno::EPIPE
117
+ Errno::EPROCLIM
118
+ Errno::EPROCUNAVAIL
119
+ Errno::EPROGMISMATCH
120
+ Errno::EPROGUNAVAIL
121
+ Errno::EPROTONOSUPPORT
122
+ Errno::EPROTOTYPE
123
+ Errno::ERANGE
124
+ Errno::EREMOTE
125
+ Errno::EROFS
126
+ Errno::ERPCMISMATCH
127
+ Errno::ESHUTDOWN
128
+ Errno::ESOCKTNOSUPPORT
129
+ Errno::ESPIPE
130
+ Errno::ESRCH
131
+ Errno::ESTALE
132
+ Errno::ETIMEDOUT
133
+ Errno::ETOOMANYREFS
134
+ Errno::ETXTBSY
135
+ Errno::EUSERS
136
+ Errno::EXDEV
137
+ Errno::NOERROR
138
+ Exception
139
+ FalseClass
140
+ Fiber
141
+ FiberError
142
+ File
143
+ File::Constants
144
+ File::Stat
145
+ FileTest
146
+ Float
147
+ FloatDomainError
148
+ FrozenError
149
+ GC
150
+ GC::Profiler
151
+ Gem
152
+ Gem::BasicSpecification
153
+ Gem::CommandLineError
154
+ Gem::ConflictError
155
+ Gem::Dependency
156
+ Gem::DependencyError
157
+ Gem::DependencyRemovalException
158
+ Gem::DependencyResolutionError
159
+ Gem::Deprecate
160
+ Gem::DocumentError
161
+ Gem::EndOfYAMLException
162
+ Gem::ErrorReason
163
+ Gem::Exception
164
+ Gem::FilePermissionError
165
+ Gem::FormatException
166
+ Gem::GemNotFoundException
167
+ Gem::GemNotInHomeException
168
+ Gem::ImpossibleDependenciesError
169
+ Gem::InstallError
170
+ Gem::InvalidSpecificationException
171
+ Gem::List
172
+ Gem::LoadError
173
+ Gem::MissingSpecError
174
+ Gem::MissingSpecVersionError
175
+ Gem::OperationNotSupportedError
176
+ Gem::PathSupport
177
+ Gem::Platform
178
+ Gem::PlatformMismatch
179
+ Gem::RemoteError
180
+ Gem::RemoteInstallationCancelled
181
+ Gem::RemoteInstallationSkipped
182
+ Gem::RemoteSourceException
183
+ Gem::Requirement
184
+ Gem::Requirement::BadRequirementError
185
+ Gem::RubyVersionMismatch
186
+ Gem::RuntimeRequirementNotMetError
187
+ Gem::SourceFetchProblem
188
+ Gem::SpecificGemNotFoundException
189
+ Gem::Specification
190
+ Gem::SpecificationPolicy
191
+ Gem::StubSpecification
192
+ Gem::StubSpecification::StubLine
193
+ Gem::SystemExitException
194
+ Gem::UninstallError
195
+ Gem::UnsatisfiableDependencyError
196
+ Gem::Util
197
+ Gem::VerificationError
198
+ Gem::Version
199
+ Hash
200
+ IO
201
+ IO::EAGAINWaitReadable
202
+ IO::EAGAINWaitWritable
203
+ IO::EINPROGRESSWaitReadable
204
+ IO::EINPROGRESSWaitWritable
205
+ IO::WaitReadable
206
+ IO::WaitWritable
207
+ IO::generic_readable
208
+ IO::generic_writable
209
+ IOError
210
+ IndexError
211
+ Integer
212
+ Interrupt
213
+ Kernel
214
+ KeyError
215
+ LoadError
216
+ LocalJumpError
217
+ Marshal
218
+ MatchData
219
+ Math
220
+ Math::DomainError
221
+ Method
222
+ Module
223
+ Monitor
224
+ MonitorMixin
225
+ MonitorMixin::ConditionVariable
226
+ MonitorMixin::ConditionVariable::Timeout
227
+ NameError
228
+ NameError::message
229
+ NilClass
230
+ NoMemoryError
231
+ NoMethodError
232
+ NotImplementedError
233
+ Numeric
234
+ Object
235
+ ObjectSpace
236
+ ObjectSpace::WeakMap
237
+ Proc
238
+ Process
239
+ Process::GID
240
+ Process::Status
241
+ Process::Sys
242
+ Process::Tms
243
+ Process::UID
244
+ Process::Waiter
245
+ Random
246
+ Random::Formatter
247
+ Range
248
+ RangeError
249
+ Rational
250
+ Rational::compatible
251
+ RbConfig
252
+ Regexp
253
+ RegexpError
254
+ RubyVM
255
+ RubyVM::AbstractSyntaxTree
256
+ RubyVM::AbstractSyntaxTree::Node
257
+ RubyVM::InstructionSequence
258
+ RubyVM::MJIT
259
+ RuntimeError
260
+ ScriptError
261
+ SecurityError
262
+ Signal
263
+ SignalException
264
+ SimpleDelegator
265
+ StandardError
266
+ StopIteration
267
+ String
268
+ StringIO
269
+ Struct
270
+ Symbol
271
+ SyntaxError
272
+ SystemCallError
273
+ SystemExit
274
+ SystemStackError
275
+ Thread
276
+ Thread::Backtrace
277
+ Thread::Backtrace::Location
278
+ Thread::ConditionVariable
279
+ Thread::Mutex
280
+ Thread::Queue
281
+ Thread::SizedQueue
282
+ ThreadError
283
+ ThreadGroup
284
+ Time
285
+ Time::tm
286
+ TracePoint
287
+ TrueClass
288
+ TypeError
289
+ URI
290
+ URI::BadURIError
291
+ URI::Error
292
+ URI::Escape
293
+ URI::FTP
294
+ URI::File
295
+ URI::Generic
296
+ URI::HTTP
297
+ URI::HTTPS
298
+ URI::InvalidComponentError
299
+ URI::InvalidURIError
300
+ URI::LDAP
301
+ URI::LDAPS
302
+ URI::MailTo
303
+ URI::RFC2396_Parser
304
+ URI::RFC2396_REGEXP
305
+ URI::RFC2396_REGEXP::PATTERN
306
+ URI::RFC3986_Parser
307
+ URI::Util
308
+ UnboundMethod
309
+ UncaughtThrowError
310
+ UnicodeNormalize
311
+ Warning
312
+ Warning::buffer
313
+ ZeroDivisionError
314
+ fatal
@@ -0,0 +1,306 @@
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::CorrectElement
15
+ DidYouMean::Correctable
16
+ DidYouMean::Jaro
17
+ DidYouMean::JaroWinkler
18
+ DidYouMean::KeyErrorChecker
19
+ DidYouMean::Levenshtein
20
+ DidYouMean::MethodNameChecker
21
+ DidYouMean::NullChecker
22
+ DidYouMean::ParseDimensions
23
+ DidYouMean::PlainFormatter
24
+ DidYouMean::SpellChecker
25
+ DidYouMean::TreeSpellChecker
26
+ DidYouMean::VariableNameChecker
27
+ Dir
28
+ EOFError
29
+ Encoding
30
+ Encoding::CompatibilityError
31
+ Encoding::Converter
32
+ Encoding::ConverterNotFoundError
33
+ Encoding::InvalidByteSequenceError
34
+ Encoding::UndefinedConversionError
35
+ EncodingError
36
+ Enumerable
37
+ Enumerator
38
+ Enumerator::ArithmeticSequence
39
+ Enumerator::Chain
40
+ Enumerator::Generator
41
+ Enumerator::Lazy
42
+ Enumerator::Producer
43
+ Enumerator::Yielder
44
+ Errno
45
+ Errno::E2BIG
46
+ Errno::EACCES
47
+ Errno::EADDRINUSE
48
+ Errno::EADDRNOTAVAIL
49
+ Errno::EAFNOSUPPORT
50
+ Errno::EAGAIN
51
+ Errno::EALREADY
52
+ Errno::EAUTH
53
+ Errno::EBADF
54
+ Errno::EBADMSG
55
+ Errno::EBADRPC
56
+ Errno::EBUSY
57
+ Errno::ECANCELED
58
+ Errno::ECHILD
59
+ Errno::ECONNABORTED
60
+ Errno::ECONNREFUSED
61
+ Errno::ECONNRESET
62
+ Errno::EDEADLK
63
+ Errno::EDESTADDRREQ
64
+ Errno::EDOM
65
+ Errno::EDQUOT
66
+ Errno::EEXIST
67
+ Errno::EFAULT
68
+ Errno::EFBIG
69
+ Errno::EFTYPE
70
+ Errno::EHOSTDOWN
71
+ Errno::EHOSTUNREACH
72
+ Errno::EIDRM
73
+ Errno::EILSEQ
74
+ Errno::EINPROGRESS
75
+ Errno::EINTR
76
+ Errno::EINVAL
77
+ Errno::EIO
78
+ Errno::EIPSEC
79
+ Errno::EISCONN
80
+ Errno::EISDIR
81
+ Errno::ELAST
82
+ Errno::ELOOP
83
+ Errno::EMEDIUMTYPE
84
+ Errno::EMFILE
85
+ Errno::EMLINK
86
+ Errno::EMSGSIZE
87
+ Errno::ENAMETOOLONG
88
+ Errno::ENEEDAUTH
89
+ Errno::ENETDOWN
90
+ Errno::ENETRESET
91
+ Errno::ENETUNREACH
92
+ Errno::ENFILE
93
+ Errno::ENOATTR
94
+ Errno::ENOBUFS
95
+ Errno::ENODEV
96
+ Errno::ENOENT
97
+ Errno::ENOEXEC
98
+ Errno::ENOLCK
99
+ Errno::ENOMEDIUM
100
+ Errno::ENOMEM
101
+ Errno::ENOMSG
102
+ Errno::ENOPROTOOPT
103
+ Errno::ENOSPC
104
+ Errno::ENOSYS
105
+ Errno::ENOTBLK
106
+ Errno::ENOTCONN
107
+ Errno::ENOTDIR
108
+ Errno::ENOTEMPTY
109
+ Errno::ENOTRECOVERABLE
110
+ Errno::ENOTSOCK
111
+ Errno::ENOTSUP
112
+ Errno::ENOTTY
113
+ Errno::ENXIO
114
+ Errno::EOPNOTSUPP
115
+ Errno::EOVERFLOW
116
+ Errno::EOWNERDEAD
117
+ Errno::EPERM
118
+ Errno::EPFNOSUPPORT
119
+ Errno::EPIPE
120
+ Errno::EPROCLIM
121
+ Errno::EPROCUNAVAIL
122
+ Errno::EPROGMISMATCH
123
+ Errno::EPROGUNAVAIL
124
+ Errno::EPROTONOSUPPORT
125
+ Errno::EPROTOTYPE
126
+ Errno::ERANGE
127
+ Errno::EREMOTE
128
+ Errno::EROFS
129
+ Errno::ERPCMISMATCH
130
+ Errno::ESHUTDOWN
131
+ Errno::ESOCKTNOSUPPORT
132
+ Errno::ESPIPE
133
+ Errno::ESRCH
134
+ Errno::ESTALE
135
+ Errno::ETIMEDOUT
136
+ Errno::ETOOMANYREFS
137
+ Errno::ETXTBSY
138
+ Errno::EUSERS
139
+ Errno::EXDEV
140
+ Errno::NOERROR
141
+ Exception
142
+ FalseClass
143
+ Fiber
144
+ FiberError
145
+ File
146
+ File::Constants
147
+ File::Stat
148
+ FileTest
149
+ Float
150
+ FloatDomainError
151
+ FrozenError
152
+ GC
153
+ GC::Profiler
154
+ Gem
155
+ Gem::BasicSpecification
156
+ Gem::BundlerVersionFinder
157
+ Gem::CommandLineError
158
+ Gem::ConflictError
159
+ Gem::ConsoleUI
160
+ Gem::DefaultUserInteraction
161
+ Gem::Dependency
162
+ Gem::DependencyError
163
+ Gem::DependencyRemovalException
164
+ Gem::DependencyResolutionError
165
+ Gem::Deprecate
166
+ Gem::DocumentError
167
+ Gem::EndOfYAMLException
168
+ Gem::ErrorReason
169
+ Gem::Exception
170
+ Gem::FilePermissionError
171
+ Gem::FormatException
172
+ Gem::GemNotFoundException
173
+ Gem::GemNotInHomeException
174
+ Gem::ImpossibleDependenciesError
175
+ Gem::InstallError
176
+ Gem::InvalidSpecificationException
177
+ Gem::List
178
+ Gem::LoadError
179
+ Gem::MissingSpecError
180
+ Gem::MissingSpecVersionError
181
+ Gem::OperationNotSupportedError
182
+ Gem::PathSupport
183
+ Gem::Platform
184
+ Gem::PlatformMismatch
185
+ Gem::RemoteError
186
+ Gem::RemoteInstallationCancelled
187
+ Gem::RemoteInstallationSkipped
188
+ Gem::RemoteSourceException
189
+ Gem::Requirement
190
+ Gem::Requirement::BadRequirementError
191
+ Gem::RubyVersionMismatch
192
+ Gem::RuntimeRequirementNotMetError
193
+ Gem::SilentUI
194
+ Gem::SourceFetchProblem
195
+ Gem::SpecificGemNotFoundException
196
+ Gem::Specification
197
+ Gem::SpecificationPolicy
198
+ Gem::StreamUI
199
+ Gem::StreamUI::SilentDownloadReporter
200
+ Gem::StreamUI::SilentProgressReporter
201
+ Gem::StreamUI::SimpleProgressReporter
202
+ Gem::StreamUI::ThreadedDownloadReporter
203
+ Gem::StreamUI::VerboseProgressReporter
204
+ Gem::StubSpecification
205
+ Gem::StubSpecification::StubLine
206
+ Gem::SystemExitException
207
+ Gem::Text
208
+ Gem::UninstallError
209
+ Gem::UnsatisfiableDependencyError
210
+ Gem::UserInteraction
211
+ Gem::Util
212
+ Gem::VerificationError
213
+ Gem::Version
214
+ Hash
215
+ IO
216
+ IO::EAGAINWaitReadable
217
+ IO::EAGAINWaitWritable
218
+ IO::EINPROGRESSWaitReadable
219
+ IO::EINPROGRESSWaitWritable
220
+ IO::WaitReadable
221
+ IO::WaitWritable
222
+ IOError
223
+ IndexError
224
+ Integer
225
+ Interrupt
226
+ Kernel
227
+ KeyError
228
+ LoadError
229
+ LocalJumpError
230
+ Marshal
231
+ MatchData
232
+ Math
233
+ Math::DomainError
234
+ Method
235
+ Module
236
+ Monitor
237
+ MonitorMixin
238
+ MonitorMixin::ConditionVariable
239
+ NameError
240
+ NameError::message
241
+ NilClass
242
+ NoMatchingPatternError
243
+ NoMemoryError
244
+ NoMethodError
245
+ NotImplementedError
246
+ Numeric
247
+ Object
248
+ ObjectSpace
249
+ ObjectSpace::WeakMap
250
+ Proc
251
+ Process
252
+ Process::GID
253
+ Process::Status
254
+ Process::Sys
255
+ Process::Tms
256
+ Process::UID
257
+ Process::Waiter
258
+ Random
259
+ Random::Formatter
260
+ Range
261
+ RangeError
262
+ Rational
263
+ Rational::compatible
264
+ RbConfig
265
+ Regexp
266
+ RegexpError
267
+ RubyVM
268
+ RubyVM::AbstractSyntaxTree
269
+ RubyVM::AbstractSyntaxTree::Node
270
+ RubyVM::InstructionSequence
271
+ RubyVM::MJIT
272
+ RuntimeError
273
+ ScriptError
274
+ SecurityError
275
+ Signal
276
+ SignalException
277
+ StandardError
278
+ StopIteration
279
+ String
280
+ Struct
281
+ Symbol
282
+ SyntaxError
283
+ SystemCallError
284
+ SystemExit
285
+ SystemStackError
286
+ Thread
287
+ Thread::Backtrace
288
+ Thread::Backtrace::Location
289
+ Thread::ConditionVariable
290
+ Thread::Mutex
291
+ Thread::Queue
292
+ Thread::SizedQueue
293
+ ThreadError
294
+ ThreadGroup
295
+ Time
296
+ Time::tm
297
+ TracePoint
298
+ TrueClass
299
+ TypeError
300
+ UnboundMethod
301
+ UncaughtThrowError
302
+ UnicodeNormalize
303
+ Warning
304
+ Warning::buffer
305
+ ZeroDivisionError
306
+ fatal
@@ -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.1.0
4
+ version: 1.4.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: 2018-02-16 00:00:00.000000000 Z
11
+ date: 2022-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -24,11 +24,25 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest-global_expectations
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  description: |
28
42
  Refrigerator freezes all core classes. It is designed to be used
29
43
  in production, to make sure that none of the core classes are
30
44
  modified at runtime. It can also be used to check libraries to
31
- make sure that don't make unexpected modifications/monkey patches
45
+ make sure that they don't make unexpected modifications/monkey patches
32
46
  to core classes.
33
47
  email: code@jeremyevans.net
34
48
  executables:
@@ -53,10 +67,18 @@ files:
53
67
  - module_names/23.txt
54
68
  - module_names/24.txt
55
69
  - module_names/25.txt
70
+ - module_names/26.txt
71
+ - module_names/27.txt
72
+ - module_names/30.txt
73
+ - module_names/31.txt
56
74
  homepage: http://github.com/jeremyevans/ruby-refrigerator
57
75
  licenses:
58
76
  - MIT
59
- 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
60
82
  post_install_message:
61
83
  rdoc_options:
62
84
  - "--quiet"
@@ -79,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
101
  - !ruby/object:Gem::Version
80
102
  version: '0'
81
103
  requirements: []
82
- rubyforge_project:
83
- rubygems_version: 2.7.3
104
+ rubygems_version: 3.3.7
84
105
  signing_key:
85
106
  specification_version: 4
86
107
  summary: Freeze all core ruby classes