refrigerator 1.8.0 → 1.9.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 +4 -4
- data/CHANGELOG +4 -0
- data/MIT-LICENSE +1 -1
- data/Rakefile +20 -23
- data/module_names/40.txt +325 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '07393b98c1a7ec2c72c81c1e035faf02cb08d82fe04b75b6aeac7d5a0bebbfbb'
|
|
4
|
+
data.tar.gz: 83f794be366e0a9e1a82441e7596ca233771da19c1719e56ec3527ec96541aff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96cb9916787973cba6409f3f77b97afb10074b781b988890e32160dff760f3da83e99cba52e3188e00fd4426454eb56374f4b51929846390a7cecbff0afe3033
|
|
7
|
+
data.tar.gz: 3131b6c126231b9426db57249f7733f5ea9c29326e77ec591edc028d91ea8448a7c2e21f1dfbbd100d532920532a864ecf74254272ef587281a0e93724da1c7e
|
data/CHANGELOG
CHANGED
data/MIT-LICENSE
CHANGED
data/Rakefile
CHANGED
|
@@ -33,27 +33,24 @@ end
|
|
|
33
33
|
|
|
34
34
|
### RDoc
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
rdoc.rdoc_dir = "rdoc"
|
|
57
|
-
rdoc.options += RDOC_OPTS
|
|
58
|
-
rdoc.rdoc_files.add %w"README.rdoc CHANGELOG MIT-LICENSE lib/**/*.rb"
|
|
36
|
+
desc "Generate rdoc"
|
|
37
|
+
task :rdoc do
|
|
38
|
+
rdoc_dir = "rdoc"
|
|
39
|
+
rdoc_opts = ["--line-numbers", "--inline-source", '--title', 'Refrigerator: Freeze core ruby classes']
|
|
40
|
+
|
|
41
|
+
begin
|
|
42
|
+
gem 'hanna'
|
|
43
|
+
rdoc_opts.concat(['-f', 'hanna'])
|
|
44
|
+
rescue Gem::LoadError
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
rdoc_opts.concat(['--main', 'README.rdoc', "-o", rdoc_dir] +
|
|
48
|
+
%w"README.rdoc CHANGELOG MIT-LICENSE" +
|
|
49
|
+
Dir["lib/**/*.rb"]
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
FileUtils.rm_rf(rdoc_dir)
|
|
53
|
+
|
|
54
|
+
require "rdoc"
|
|
55
|
+
RDoc::RDoc.new.document(rdoc_opts)
|
|
59
56
|
end
|
data/module_names/40.txt
ADDED
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
ARGF.class
|
|
2
|
+
ArgumentError
|
|
3
|
+
Array
|
|
4
|
+
BasicObject
|
|
5
|
+
Binding
|
|
6
|
+
Class
|
|
7
|
+
ClosedQueueError
|
|
8
|
+
Comparable
|
|
9
|
+
Complex
|
|
10
|
+
Data
|
|
11
|
+
DidYouMean
|
|
12
|
+
DidYouMean::ClassNameChecker
|
|
13
|
+
DidYouMean::Correctable
|
|
14
|
+
DidYouMean::Formatter
|
|
15
|
+
DidYouMean::Jaro
|
|
16
|
+
DidYouMean::JaroWinkler
|
|
17
|
+
DidYouMean::KeyErrorChecker
|
|
18
|
+
DidYouMean::Levenshtein
|
|
19
|
+
DidYouMean::MethodNameChecker
|
|
20
|
+
DidYouMean::NullChecker
|
|
21
|
+
DidYouMean::PatternKeyNameChecker
|
|
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::Product
|
|
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::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::EPROTO
|
|
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
|
+
ErrorHighlight
|
|
142
|
+
ErrorHighlight::CoreExt
|
|
143
|
+
ErrorHighlight::DefaultFormatter
|
|
144
|
+
Exception
|
|
145
|
+
FalseClass
|
|
146
|
+
Fiber
|
|
147
|
+
FiberError
|
|
148
|
+
File
|
|
149
|
+
File::Constants
|
|
150
|
+
File::Stat
|
|
151
|
+
FileTest
|
|
152
|
+
Float
|
|
153
|
+
FloatDomainError
|
|
154
|
+
FrozenError
|
|
155
|
+
GC
|
|
156
|
+
GC::Profiler
|
|
157
|
+
Gem
|
|
158
|
+
Gem::BUNDLED_GEMS
|
|
159
|
+
Gem::BasicSpecification
|
|
160
|
+
Gem::CommandLineError
|
|
161
|
+
Gem::ConflictError
|
|
162
|
+
Gem::Dependency
|
|
163
|
+
Gem::DependencyError
|
|
164
|
+
Gem::DependencyRemovalException
|
|
165
|
+
Gem::DependencyResolutionError
|
|
166
|
+
Gem::Deprecate
|
|
167
|
+
Gem::DocumentError
|
|
168
|
+
Gem::EndOfYAMLException
|
|
169
|
+
Gem::ErrorReason
|
|
170
|
+
Gem::Exception
|
|
171
|
+
Gem::FilePermissionError
|
|
172
|
+
Gem::FormatException
|
|
173
|
+
Gem::GemNotFoundException
|
|
174
|
+
Gem::GemNotInHomeException
|
|
175
|
+
Gem::ImpossibleDependenciesError
|
|
176
|
+
Gem::InstallError
|
|
177
|
+
Gem::InvalidSpecificationException
|
|
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::SourceFetchProblem
|
|
194
|
+
Gem::Specification
|
|
195
|
+
Gem::SpecificationRecord
|
|
196
|
+
Gem::StubSpecification
|
|
197
|
+
Gem::StubSpecification::StubLine
|
|
198
|
+
Gem::SystemExitException
|
|
199
|
+
Gem::TargetRbConfig
|
|
200
|
+
Gem::UninstallError
|
|
201
|
+
Gem::UnknownCommandError
|
|
202
|
+
Gem::UnknownCommandSpellChecker
|
|
203
|
+
Gem::UnsatisfiableDependencyError
|
|
204
|
+
Gem::Util
|
|
205
|
+
Gem::VerificationError
|
|
206
|
+
Gem::Version
|
|
207
|
+
Gem::WebauthnVerificationError
|
|
208
|
+
Hash
|
|
209
|
+
IO
|
|
210
|
+
IO::Buffer
|
|
211
|
+
IO::Buffer::AccessError
|
|
212
|
+
IO::Buffer::AllocationError
|
|
213
|
+
IO::Buffer::InvalidatedError
|
|
214
|
+
IO::Buffer::LockedError
|
|
215
|
+
IO::Buffer::MaskError
|
|
216
|
+
IO::EAGAINWaitReadable
|
|
217
|
+
IO::EAGAINWaitWritable
|
|
218
|
+
IO::EINPROGRESSWaitReadable
|
|
219
|
+
IO::EINPROGRESSWaitWritable
|
|
220
|
+
IO::TimeoutError
|
|
221
|
+
IO::WaitReadable
|
|
222
|
+
IO::WaitWritable
|
|
223
|
+
IOError
|
|
224
|
+
IndexError
|
|
225
|
+
Integer
|
|
226
|
+
Interrupt
|
|
227
|
+
Kernel
|
|
228
|
+
KeyError
|
|
229
|
+
LoadError
|
|
230
|
+
LocalJumpError
|
|
231
|
+
Marshal
|
|
232
|
+
MatchData
|
|
233
|
+
Math
|
|
234
|
+
Math::DomainError
|
|
235
|
+
Method
|
|
236
|
+
Module
|
|
237
|
+
Monitor
|
|
238
|
+
MonitorMixin
|
|
239
|
+
MonitorMixin::ConditionVariable
|
|
240
|
+
NameError
|
|
241
|
+
NilClass
|
|
242
|
+
NoMatchingPatternError
|
|
243
|
+
NoMatchingPatternKeyError
|
|
244
|
+
NoMemoryError
|
|
245
|
+
NoMethodError
|
|
246
|
+
NotImplementedError
|
|
247
|
+
Numeric
|
|
248
|
+
Object
|
|
249
|
+
ObjectSpace
|
|
250
|
+
ObjectSpace::WeakKeyMap
|
|
251
|
+
ObjectSpace::WeakMap
|
|
252
|
+
Pathname
|
|
253
|
+
Proc
|
|
254
|
+
Process
|
|
255
|
+
Process::GID
|
|
256
|
+
Process::Status
|
|
257
|
+
Process::Sys
|
|
258
|
+
Process::Tms
|
|
259
|
+
Process::UID
|
|
260
|
+
Process::Waiter
|
|
261
|
+
Ractor
|
|
262
|
+
Ractor::ClosedError
|
|
263
|
+
Ractor::Error
|
|
264
|
+
Ractor::IsolationError
|
|
265
|
+
Ractor::MovedError
|
|
266
|
+
Ractor::MovedObject
|
|
267
|
+
Ractor::Port
|
|
268
|
+
Ractor::RemoteError
|
|
269
|
+
Ractor::UnsafeError
|
|
270
|
+
Random
|
|
271
|
+
Random::Base
|
|
272
|
+
Random::Formatter
|
|
273
|
+
Range
|
|
274
|
+
RangeError
|
|
275
|
+
Rational
|
|
276
|
+
RbConfig
|
|
277
|
+
Refinement
|
|
278
|
+
Regexp
|
|
279
|
+
Regexp::TimeoutError
|
|
280
|
+
RegexpError
|
|
281
|
+
Ruby
|
|
282
|
+
Ruby::Box
|
|
283
|
+
Ruby::Box::Entry
|
|
284
|
+
Ruby::Box::Loader
|
|
285
|
+
RubyVM
|
|
286
|
+
RubyVM::AbstractSyntaxTree
|
|
287
|
+
RubyVM::AbstractSyntaxTree::Location
|
|
288
|
+
RubyVM::AbstractSyntaxTree::Node
|
|
289
|
+
RubyVM::InstructionSequence
|
|
290
|
+
RubyVM::YJIT
|
|
291
|
+
RuntimeError
|
|
292
|
+
ScriptError
|
|
293
|
+
SecurityError
|
|
294
|
+
Set
|
|
295
|
+
Set::CoreSet
|
|
296
|
+
Signal
|
|
297
|
+
SignalException
|
|
298
|
+
StandardError
|
|
299
|
+
StopIteration
|
|
300
|
+
String
|
|
301
|
+
Struct
|
|
302
|
+
Symbol
|
|
303
|
+
SyntaxError
|
|
304
|
+
SyntaxSuggest
|
|
305
|
+
SystemCallError
|
|
306
|
+
SystemExit
|
|
307
|
+
SystemStackError
|
|
308
|
+
Thread
|
|
309
|
+
Thread::Backtrace
|
|
310
|
+
Thread::Backtrace::Location
|
|
311
|
+
Thread::ConditionVariable
|
|
312
|
+
Thread::Mutex
|
|
313
|
+
Thread::Queue
|
|
314
|
+
Thread::SizedQueue
|
|
315
|
+
ThreadError
|
|
316
|
+
ThreadGroup
|
|
317
|
+
Time
|
|
318
|
+
TracePoint
|
|
319
|
+
TrueClass
|
|
320
|
+
TypeError
|
|
321
|
+
UnboundMethod
|
|
322
|
+
UncaughtThrowError
|
|
323
|
+
UnicodeNormalize
|
|
324
|
+
Warning
|
|
325
|
+
ZeroDivisionError
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: refrigerator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremy Evans
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: minitest
|
|
@@ -48,9 +48,9 @@ executables:
|
|
|
48
48
|
- check_require
|
|
49
49
|
extensions: []
|
|
50
50
|
extra_rdoc_files:
|
|
51
|
-
- README.rdoc
|
|
52
51
|
- CHANGELOG
|
|
53
52
|
- MIT-LICENSE
|
|
53
|
+
- README.rdoc
|
|
54
54
|
files:
|
|
55
55
|
- CHANGELOG
|
|
56
56
|
- MIT-LICENSE
|
|
@@ -73,6 +73,7 @@ files:
|
|
|
73
73
|
- module_names/32.txt
|
|
74
74
|
- module_names/33.txt
|
|
75
75
|
- module_names/34.txt
|
|
76
|
+
- module_names/40.txt
|
|
76
77
|
homepage: http://github.com/jeremyevans/ruby-refrigerator
|
|
77
78
|
licenses:
|
|
78
79
|
- MIT
|
|
@@ -102,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
103
|
- !ruby/object:Gem::Version
|
|
103
104
|
version: '0'
|
|
104
105
|
requirements: []
|
|
105
|
-
rubygems_version:
|
|
106
|
+
rubygems_version: 4.0.3
|
|
106
107
|
specification_version: 4
|
|
107
108
|
summary: Freeze all core ruby classes
|
|
108
109
|
test_files: []
|