lazier 4.2.1 → 4.2.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 +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +6 -1
- data/.travis-gemfile +4 -5
- data/.travis.yml +5 -3
- data/.yardopts +1 -1
- data/Gemfile +6 -6
- data/README.md +7 -5
- data/{doc → docs}/Lazier.html +83 -83
- data/{doc → docs}/Lazier/Boolean.html +49 -46
- data/{doc → docs}/Lazier/Configuration.html +51 -48
- data/{doc → docs}/Lazier/DateTime.html +51 -48
- data/{doc → docs}/Lazier/DateTime/ClassMethods.html +52 -50
- data/{doc → docs}/Lazier/Exceptions.html +39 -37
- data/{doc → docs}/Lazier/Exceptions/Debug.html +45 -42
- data/{doc → docs}/Lazier/Exceptions/MissingTranslation.html +48 -45
- data/{doc → docs}/Lazier/Exceptions/TranslationExceptionHandler.html +48 -45
- data/{doc → docs}/Lazier/Hash.html +61 -60
- data/{doc → docs}/Lazier/I18n.html +72 -72
- data/{doc → docs}/Lazier/Math.html +44 -41
- data/{doc → docs}/Lazier/Math/ClassMethods.html +44 -42
- data/{doc → docs}/Lazier/Object.html +106 -105
- data/{doc → docs}/Lazier/Pathname.html +47 -44
- data/{doc → docs}/Lazier/Settings.html +72 -69
- data/{doc → docs}/Lazier/String.html +55 -52
- data/{doc → docs}/Lazier/TimeZone.html +78 -77
- data/{doc → docs}/Lazier/TimeZone/ClassMethods.html +54 -52
- data/docs/Lazier/Version.html +189 -0
- data/{doc → docs}/_index.html +29 -30
- data/docs/class_list.html +51 -0
- data/{doc → docs}/css/common.css +0 -0
- data/{doc → docs}/css/full_list.css +32 -31
- data/{doc → docs}/css/style.css +220 -78
- data/{doc → docs}/file.README.html +35 -34
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/{doc → docs}/index.html +35 -34
- data/{doc → docs}/js/app.js +100 -76
- data/docs/js/full_list.js +216 -0
- data/{doc → docs}/js/jquery.js +0 -0
- data/docs/method_list.html +883 -0
- data/docs/top-level-namespace.html +112 -0
- data/lazier.gemspec +5 -5
- data/lib/lazier/version.rb +1 -1
- metadata +42 -43
- data/doc/Lazier/Version.html +0 -189
- data/doc/class_list.html +0 -58
- data/doc/file_list.html +0 -60
- data/doc/frames.html +0 -26
- data/doc/js/full_list.js +0 -181
- data/doc/method_list.html +0 -681
- data/doc/top-level-namespace.html +0 -112
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f65c5409fa2f96712509a043fdc0b31b1964201
|
4
|
+
data.tar.gz: 286e4328ba2c0762d073050bf6703e9d31cc835a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72d76c42a070c9b7ae8ce33856ac99d17d37658a9b1d2f7e393337ed9a807e9635bfce0c59f5f8a15a016cb8f1d07e2f384bcf00b8a09db5a5cd73cdd9146bc4
|
7
|
+
data.tar.gz: eeddf143eeb03af3966549020d0d0da4d946f9d2f9fe0877054cb919ac48c89257fa3fbb387c98e5d83082a02b5d3f766e568decae4937e26d13a5edb3db42c9
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
#
|
2
|
+
# This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
3
|
+
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
4
|
+
#
|
5
|
+
|
1
6
|
AllCops:
|
2
7
|
TargetRubyVersion: 2.3
|
3
8
|
Include:
|
@@ -74,4 +79,4 @@ StringReplacement:
|
|
74
79
|
Enabled: false
|
75
80
|
|
76
81
|
WordArray:
|
77
|
-
Enabled: false
|
82
|
+
Enabled: false
|
data/.travis-gemfile
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
#
|
3
2
|
# This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
4
3
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
@@ -9,7 +8,7 @@ source "http://rubygems.org"
|
|
9
8
|
gemspec
|
10
9
|
|
11
10
|
# Testing
|
12
|
-
gem "rspec", "~> 3.
|
13
|
-
gem "rake", "~>
|
14
|
-
gem "simplecov", "
|
15
|
-
gem "coveralls", "
|
11
|
+
gem "rspec", "~> 3.5"
|
12
|
+
gem "rake", "~> 11.3"
|
13
|
+
gem "simplecov", "~> 0.12"
|
14
|
+
gem "coveralls", "~> 0.8", require: false
|
data/.travis.yml
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
#
|
2
|
+
# This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
3
|
+
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
4
|
+
#
|
5
|
+
|
1
6
|
language: ruby
|
2
7
|
rvm:
|
3
8
|
- 2.3.0
|
@@ -5,6 +10,3 @@ script: bundle exec rake spec:ci
|
|
5
10
|
gemfile: .travis-gemfile
|
6
11
|
notifications:
|
7
12
|
email: false
|
8
|
-
addons:
|
9
|
-
code_climate:
|
10
|
-
repo_token: 3341054bb0ae7ca3edbfa7e5c2d2aa02e8bbd940eeba651bae465a3dfb3f0d3d
|
data/.yardopts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
-m markdown
|
1
|
+
-o ./docs -m markdown
|
data/Gemfile
CHANGED
@@ -9,14 +9,14 @@ source "http://rubygems.org"
|
|
9
9
|
gemspec
|
10
10
|
|
11
11
|
# Testing
|
12
|
-
gem "rspec", "~> 3.
|
13
|
-
gem "rake", "~> 11.
|
12
|
+
gem "rspec", "~> 3.5"
|
13
|
+
gem "rake", "~> 11.3"
|
14
14
|
|
15
15
|
# Documentation
|
16
|
-
gem "simplecov", "~> 0.
|
16
|
+
gem "simplecov", "~> 0.12"
|
17
17
|
gem "coveralls", "~> 0.8", require: false
|
18
18
|
gem "pry", "~> 0.10"
|
19
|
-
gem "yard", "~> 0.
|
20
|
-
gem "kramdown", "~> 1.
|
19
|
+
gem "yard", "~> 0.9"
|
20
|
+
gem "kramdown", "~> 1.12"
|
21
21
|
gem "github-markup", "~> 1.4"
|
22
|
-
gem "rubocop", "~> 0.
|
22
|
+
gem "rubocop", "~> 0.45"
|
data/README.md
CHANGED
@@ -4,13 +4,11 @@
|
|
4
4
|
[](https://gemnasium.com/ShogunPanda/lazier)
|
5
5
|
[](http://travis-ci.org/ShogunPanda/lazier)
|
6
6
|
[](https://codeclimate.com/github/ShogunPanda/lazier)
|
7
|
-
[](https://coveralls.io/github/ShogunPanda/lazier?branch=master)
|
8
8
|
|
9
9
|
Several Ruby object enhancements.
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
http://rdoc.info/gems/lazier
|
11
|
+
https://sw.cowtech.it/lazier
|
14
12
|
|
15
13
|
## Usage
|
16
14
|
|
@@ -26,8 +24,12 @@ See documentation for more informations.
|
|
26
24
|
|
27
25
|
A Ruby 2.1 implementation is required.
|
28
26
|
|
27
|
+
## API Documentation
|
28
|
+
|
29
|
+
The API documentation can be found [here](https://sw.cowtech.it/lazier/docs).
|
30
|
+
|
29
31
|
## Contributing to lazier
|
30
|
-
|
32
|
+
|
31
33
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
32
34
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
33
35
|
* Fork the project.
|
data/{doc → docs}/Lazier.html
RENAMED
@@ -1,12 +1,12 @@
|
|
1
|
-
<!DOCTYPE html
|
2
|
-
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
4
3
|
<head>
|
5
|
-
<meta
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
6
|
<title>
|
7
7
|
Module: Lazier
|
8
8
|
|
9
|
-
— Documentation by YARD 0.
|
9
|
+
— Documentation by YARD 0.9.5
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -15,9 +15,8 @@
|
|
15
15
|
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
16
|
|
17
17
|
<script type="text/javascript" charset="utf-8">
|
18
|
-
|
18
|
+
pathId = "Lazier";
|
19
19
|
relpath = '';
|
20
|
-
framesUrl = "frames.html#!Lazier.html";
|
21
20
|
</script>
|
22
21
|
|
23
22
|
|
@@ -28,67 +27,69 @@
|
|
28
27
|
|
29
28
|
</head>
|
30
29
|
<body>
|
31
|
-
<div
|
32
|
-
<
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="class_list.html"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
33
38
|
|
34
39
|
<a href="_index.html">Index (L)</a> »
|
35
40
|
|
36
41
|
|
37
42
|
<span class="title">Lazier</span>
|
38
43
|
|
39
|
-
|
40
|
-
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
41
44
|
</div>
|
42
45
|
|
43
|
-
|
46
|
+
<div id="search">
|
44
47
|
|
45
48
|
<a class="full_list_link" id="class_list_link"
|
46
49
|
href="class_list.html">
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
</a>
|
54
|
-
|
55
|
-
<a class="full_list_link" id="file_list_link"
|
56
|
-
href="file_list.html">
|
57
|
-
File List
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
58
56
|
</a>
|
59
57
|
|
60
58
|
</div>
|
61
|
-
|
62
|
-
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
63
61
|
|
64
|
-
|
62
|
+
<iframe id="search_frame" src="class_list.html"></iframe>
|
65
63
|
|
66
|
-
|
64
|
+
<div id="content"><h1>Module: Lazier
|
67
65
|
|
68
66
|
|
69
67
|
|
70
68
|
</h1>
|
69
|
+
<div class="box_info">
|
70
|
+
|
71
71
|
|
72
|
-
<dl class="box">
|
73
72
|
|
74
73
|
|
75
|
-
|
76
74
|
|
77
|
-
|
78
75
|
|
79
76
|
|
77
|
+
|
78
|
+
|
79
|
+
|
80
80
|
|
81
|
-
|
82
|
-
<
|
81
|
+
<dl>
|
82
|
+
<dt>Defined in:</dt>
|
83
|
+
<dd>lib/lazier.rb<span class="defines">,<br />
|
83
84
|
lib/lazier/hash.rb,<br /> lib/lazier/math.rb,<br /> lib/lazier/i18n.rb,<br /> lib/lazier/object.rb,<br /> lib/lazier/string.rb,<br /> lib/lazier/version.rb,<br /> lib/lazier/boolean.rb,<br /> lib/lazier/pathname.rb,<br /> lib/lazier/settings.rb,<br /> lib/lazier/datetime.rb,<br /> lib/lazier/timezone.rb,<br /> lib/lazier/exceptions.rb,<br /> lib/lazier/configuration.rb</span>
|
84
85
|
</dd>
|
86
|
+
</dl>
|
85
87
|
|
86
|
-
</
|
87
|
-
<div class="clear"></div>
|
88
|
+
</div>
|
88
89
|
|
89
90
|
<h2>Overview</h2><div class="docstring">
|
90
91
|
<div class="discussion">
|
91
|
-
<p>This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <a href="
|
92
|
+
<p>This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <a href="mailto:shogun@cowtech.it">shogun@cowtech.it</a>.
|
92
93
|
Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
|
93
94
|
|
94
95
|
|
@@ -111,11 +112,10 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
111
112
|
</p>
|
112
113
|
|
113
114
|
<h2>Constant Summary</h2>
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
<
|
118
|
-
<div class="docstring">
|
115
|
+
<dl class="constants">
|
116
|
+
|
117
|
+
<dt id="ROOT-constant" class="">ROOT =
|
118
|
+
<div class="docstring">
|
119
119
|
<div class="discussion">
|
120
120
|
<p>The root directory of the library</p>
|
121
121
|
|
@@ -126,11 +126,10 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
126
126
|
|
127
127
|
|
128
128
|
</div>
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
129
|
+
</dt>
|
130
|
+
<dd><pre class="code"><span class='const'>File</span><span class='period'>.</span><span class='id identifier rubyid_absolute_path'>absolute_path</span><span class='lparen'>(</span><span class='id identifier rubyid___dir__'>__dir__</span> <span class='op'>+</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>/../</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span></pre></dd>
|
131
|
+
|
132
|
+
</dl>
|
134
133
|
|
135
134
|
|
136
135
|
|
@@ -141,7 +140,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
141
140
|
|
142
141
|
<h2>
|
143
142
|
Class Method Summary
|
144
|
-
<small
|
143
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
145
144
|
</h2>
|
146
145
|
|
147
146
|
<ul class="summary">
|
@@ -149,7 +148,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
149
148
|
<li class="public ">
|
150
149
|
<span class="summary_signature">
|
151
150
|
|
152
|
-
<a href="#benchmark-class_method" title="benchmark (class method)"
|
151
|
+
<a href="#benchmark-class_method" title="benchmark (class method)">.<strong>benchmark</strong>(message: nil, precision: 0, &block) ⇒ Float|String </a>
|
153
152
|
|
154
153
|
|
155
154
|
|
@@ -172,7 +171,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
172
171
|
<li class="public ">
|
173
172
|
<span class="summary_signature">
|
174
173
|
|
175
|
-
<a href="#clean_hash_compact-class_method" title="clean_hash_compact (class method)"
|
174
|
+
<a href="#clean_hash_compact-class_method" title="clean_hash_compact (class method)">.<strong>clean_hash_compact</strong> ⇒ Object </a>
|
176
175
|
|
177
176
|
|
178
177
|
|
@@ -195,7 +194,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
195
194
|
<li class="public ">
|
196
195
|
<span class="summary_signature">
|
197
196
|
|
198
|
-
<a href="#find_class-class_method" title="find_class (class method)"
|
197
|
+
<a href="#find_class-class_method" title="find_class (class method)">.<strong>find_class</strong>(cls, scope = "::@", only_in_scope = false) ⇒ Class </a>
|
199
198
|
|
200
199
|
|
201
200
|
|
@@ -218,7 +217,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
218
217
|
<li class="public ">
|
219
218
|
<span class="summary_signature">
|
220
219
|
|
221
|
-
<a href="#load%21-class_method" title="load! (class method)"
|
220
|
+
<a href="#load%21-class_method" title="load! (class method)">.<strong>load!</strong>(*what) ⇒ Settings </a>
|
222
221
|
|
223
222
|
|
224
223
|
|
@@ -241,7 +240,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
241
240
|
<li class="public ">
|
242
241
|
<span class="summary_signature">
|
243
242
|
|
244
|
-
<a href="#load_boolean-class_method" title="load_boolean (class method)"
|
243
|
+
<a href="#load_boolean-class_method" title="load_boolean (class method)">.<strong>load_boolean</strong> ⇒ Object </a>
|
245
244
|
|
246
245
|
|
247
246
|
|
@@ -264,7 +263,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
264
263
|
<li class="public ">
|
265
264
|
<span class="summary_signature">
|
266
265
|
|
267
|
-
<a href="#load_datetime-class_method" title="load_datetime (class method)"
|
266
|
+
<a href="#load_datetime-class_method" title="load_datetime (class method)">.<strong>load_datetime</strong> ⇒ Object </a>
|
268
267
|
|
269
268
|
|
270
269
|
|
@@ -287,7 +286,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
287
286
|
<li class="public ">
|
288
287
|
<span class="summary_signature">
|
289
288
|
|
290
|
-
<a href="#load_hash-class_method" title="load_hash (class method)"
|
289
|
+
<a href="#load_hash-class_method" title="load_hash (class method)">.<strong>load_hash</strong> ⇒ Object </a>
|
291
290
|
|
292
291
|
|
293
292
|
|
@@ -310,7 +309,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
310
309
|
<li class="public ">
|
311
310
|
<span class="summary_signature">
|
312
311
|
|
313
|
-
<a href="#load_math-class_method" title="load_math (class method)"
|
312
|
+
<a href="#load_math-class_method" title="load_math (class method)">.<strong>load_math</strong> ⇒ Object </a>
|
314
313
|
|
315
314
|
|
316
315
|
|
@@ -333,7 +332,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
333
332
|
<li class="public ">
|
334
333
|
<span class="summary_signature">
|
335
334
|
|
336
|
-
<a href="#load_object-class_method" title="load_object (class method)"
|
335
|
+
<a href="#load_object-class_method" title="load_object (class method)">.<strong>load_object</strong> ⇒ Object </a>
|
337
336
|
|
338
337
|
|
339
338
|
|
@@ -356,7 +355,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
356
355
|
<li class="public ">
|
357
356
|
<span class="summary_signature">
|
358
357
|
|
359
|
-
<a href="#load_pathname-class_method" title="load_pathname (class method)"
|
358
|
+
<a href="#load_pathname-class_method" title="load_pathname (class method)">.<strong>load_pathname</strong> ⇒ Object </a>
|
360
359
|
|
361
360
|
|
362
361
|
|
@@ -379,7 +378,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
379
378
|
<li class="public ">
|
380
379
|
<span class="summary_signature">
|
381
380
|
|
382
|
-
<a href="#load_string-class_method" title="load_string (class method)"
|
381
|
+
<a href="#load_string-class_method" title="load_string (class method)">.<strong>load_string</strong> ⇒ Object </a>
|
383
382
|
|
384
383
|
|
385
384
|
|
@@ -402,7 +401,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
402
401
|
<li class="public ">
|
403
402
|
<span class="summary_signature">
|
404
403
|
|
405
|
-
<a href="#loaded_modules-class_method" title="loaded_modules (class method)"
|
404
|
+
<a href="#loaded_modules-class_method" title="loaded_modules (class method)">.<strong>loaded_modules</strong> ⇒ Array </a>
|
406
405
|
|
407
406
|
|
408
407
|
|
@@ -425,7 +424,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
425
424
|
<li class="public ">
|
426
425
|
<span class="summary_signature">
|
427
426
|
|
428
|
-
<a href="#modules_loaded%3F-class_method" title="modules_loaded? (class method)"
|
427
|
+
<a href="#modules_loaded%3F-class_method" title="modules_loaded? (class method)">.<strong>modules_loaded?</strong>(*modules) ⇒ Boolean </a>
|
429
428
|
|
430
429
|
|
431
430
|
|
@@ -448,7 +447,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
448
447
|
<li class="public ">
|
449
448
|
<span class="summary_signature">
|
450
449
|
|
451
|
-
<a href="#perform_load-class_method" title="perform_load (class method)"
|
450
|
+
<a href="#perform_load-class_method" title="perform_load (class method)">.<strong>perform_load</strong>(mod, target = nil, extension = nil, &block) ⇒ Object </a>
|
452
451
|
|
453
452
|
|
454
453
|
|
@@ -471,7 +470,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
471
470
|
<li class="public ">
|
472
471
|
<span class="summary_signature">
|
473
472
|
|
474
|
-
<a href="#platform-class_method" title="platform (class method)"
|
473
|
+
<a href="#platform-class_method" title="platform (class method)">.<strong>platform</strong>(force = false) ⇒ Boolean, Symbol </a>
|
475
474
|
|
476
475
|
|
477
476
|
|
@@ -494,7 +493,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
494
493
|
<li class="public ">
|
495
494
|
<span class="summary_signature">
|
496
495
|
|
497
|
-
<a href="#search_class-class_method" title="search_class (class method)"
|
496
|
+
<a href="#search_class-class_method" title="search_class (class method)">.<strong>search_class</strong>(cls, scope = nil) ⇒ Object </a>
|
498
497
|
|
499
498
|
|
500
499
|
|
@@ -517,7 +516,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
517
516
|
<li class="public ">
|
518
517
|
<span class="summary_signature">
|
519
518
|
|
520
|
-
<a href="#settings-class_method" title="settings (class method)"
|
519
|
+
<a href="#settings-class_method" title="settings (class method)">.<strong>settings</strong> ⇒ Settings </a>
|
521
520
|
|
522
521
|
|
523
522
|
|
@@ -549,7 +548,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
549
548
|
<div class="method_details first">
|
550
549
|
<h3 class="signature first" id="benchmark-class_method">
|
551
550
|
|
552
|
-
|
551
|
+
.<strong>benchmark</strong>(message: nil, precision: 0, &block) ⇒ <tt>Float|<span class='object_link'><a href="Lazier/String.html" title="Lazier::String (module)">String</a></span></tt>
|
553
552
|
|
554
553
|
|
555
554
|
|
@@ -658,7 +657,7 @@ otherwise the duration alone as a number.</p>
|
|
658
657
|
<div class="method_details ">
|
659
658
|
<h3 class="signature " id="clean_hash_compact-class_method">
|
660
659
|
|
661
|
-
|
660
|
+
.<strong>clean_hash_compact</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
662
661
|
|
663
662
|
|
664
663
|
|
@@ -704,7 +703,7 @@ otherwise the duration alone as a number.</p>
|
|
704
703
|
<div class="method_details ">
|
705
704
|
<h3 class="signature " id="find_class-class_method">
|
706
705
|
|
707
|
-
|
706
|
+
.<strong>find_class</strong>(cls, scope = "::@", only_in_scope = false) ⇒ <tt>Class</tt>
|
708
707
|
|
709
708
|
|
710
709
|
|
@@ -827,7 +826,7 @@ Otherwise the class of the object will returned.</p>
|
|
827
826
|
<div class="method_details ">
|
828
827
|
<h3 class="signature " id="load!-class_method">
|
829
828
|
|
830
|
-
|
829
|
+
.<strong>load!</strong>(*what) ⇒ <tt><span class='object_link'><a href="Lazier/Settings.html" title="Lazier::Settings (class)">Settings</a></span></tt>
|
831
830
|
|
832
831
|
|
833
832
|
|
@@ -1037,7 +1036,7 @@ Otherwise the class of the object will returned.</p>
|
|
1037
1036
|
<div class="method_details ">
|
1038
1037
|
<h3 class="signature " id="load_boolean-class_method">
|
1039
1038
|
|
1040
|
-
|
1039
|
+
.<strong>load_boolean</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1041
1040
|
|
1042
1041
|
|
1043
1042
|
|
@@ -1091,7 +1090,7 @@ Otherwise the class of the object will returned.</p>
|
|
1091
1090
|
<div class="method_details ">
|
1092
1091
|
<h3 class="signature " id="load_datetime-class_method">
|
1093
1092
|
|
1094
|
-
|
1093
|
+
.<strong>load_datetime</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1095
1094
|
|
1096
1095
|
|
1097
1096
|
|
@@ -1147,7 +1146,7 @@ Otherwise the class of the object will returned.</p>
|
|
1147
1146
|
<div class="method_details ">
|
1148
1147
|
<h3 class="signature " id="load_hash-class_method">
|
1149
1148
|
|
1150
|
-
|
1149
|
+
.<strong>load_hash</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1151
1150
|
|
1152
1151
|
|
1153
1152
|
|
@@ -1197,7 +1196,7 @@ Otherwise the class of the object will returned.</p>
|
|
1197
1196
|
<div class="method_details ">
|
1198
1197
|
<h3 class="signature " id="load_math-class_method">
|
1199
1198
|
|
1200
|
-
|
1199
|
+
.<strong>load_math</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1201
1200
|
|
1202
1201
|
|
1203
1202
|
|
@@ -1239,7 +1238,7 @@ Otherwise the class of the object will returned.</p>
|
|
1239
1238
|
<div class="method_details ">
|
1240
1239
|
<h3 class="signature " id="load_object-class_method">
|
1241
1240
|
|
1242
|
-
|
1241
|
+
.<strong>load_object</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1243
1242
|
|
1244
1243
|
|
1245
1244
|
|
@@ -1281,7 +1280,7 @@ Otherwise the class of the object will returned.</p>
|
|
1281
1280
|
<div class="method_details ">
|
1282
1281
|
<h3 class="signature " id="load_pathname-class_method">
|
1283
1282
|
|
1284
|
-
|
1283
|
+
.<strong>load_pathname</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1285
1284
|
|
1286
1285
|
|
1287
1286
|
|
@@ -1321,7 +1320,7 @@ Otherwise the class of the object will returned.</p>
|
|
1321
1320
|
<div class="method_details ">
|
1322
1321
|
<h3 class="signature " id="load_string-class_method">
|
1323
1322
|
|
1324
|
-
|
1323
|
+
.<strong>load_string</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1325
1324
|
|
1326
1325
|
|
1327
1326
|
|
@@ -1361,7 +1360,7 @@ Otherwise the class of the object will returned.</p>
|
|
1361
1360
|
<div class="method_details ">
|
1362
1361
|
<h3 class="signature " id="loaded_modules-class_method">
|
1363
1362
|
|
1364
|
-
|
1363
|
+
.<strong>loaded_modules</strong> ⇒ <tt>Array</tt>
|
1365
1364
|
|
1366
1365
|
|
1367
1366
|
|
@@ -1418,7 +1417,7 @@ Otherwise the class of the object will returned.</p>
|
|
1418
1417
|
<div class="method_details ">
|
1419
1418
|
<h3 class="signature " id="modules_loaded?-class_method">
|
1420
1419
|
|
1421
|
-
|
1420
|
+
.<strong>modules_loaded?</strong>(*modules) ⇒ <tt><span class='object_link'><a href="Lazier/Boolean.html" title="Lazier::Boolean (module)">Boolean</a></span></tt>
|
1422
1421
|
|
1423
1422
|
|
1424
1423
|
|
@@ -1475,7 +1474,7 @@ Otherwise the class of the object will returned.</p>
|
|
1475
1474
|
<div class="method_details ">
|
1476
1475
|
<h3 class="signature " id="perform_load-class_method">
|
1477
1476
|
|
1478
|
-
|
1477
|
+
.<strong>perform_load</strong>(mod, target = nil, extension = nil, &block) ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1479
1478
|
|
1480
1479
|
|
1481
1480
|
|
@@ -1525,7 +1524,7 @@ Otherwise the class of the object will returned.</p>
|
|
1525
1524
|
<div class="method_details ">
|
1526
1525
|
<h3 class="signature " id="platform-class_method">
|
1527
1526
|
|
1528
|
-
|
1527
|
+
.<strong>platform</strong>(force = false) ⇒ <tt><span class='object_link'><a href="Lazier/Boolean.html" title="Lazier::Boolean (module)">Boolean</a></span></tt>, <tt>Symbol</tt>
|
1529
1528
|
|
1530
1529
|
|
1531
1530
|
|
@@ -1611,7 +1610,7 @@ Otherwise the class of the object will returned.</p>
|
|
1611
1610
|
<div class="method_details ">
|
1612
1611
|
<h3 class="signature " id="search_class-class_method">
|
1613
1612
|
|
1614
|
-
|
1613
|
+
.<strong>search_class</strong>(cls, scope = nil) ⇒ <tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>
|
1615
1614
|
|
1616
1615
|
|
1617
1616
|
|
@@ -1657,7 +1656,7 @@ Otherwise the class of the object will returned.</p>
|
|
1657
1656
|
<div class="method_details ">
|
1658
1657
|
<h3 class="signature " id="settings-class_method">
|
1659
1658
|
|
1660
|
-
|
1659
|
+
.<strong>settings</strong> ⇒ <tt><span class='object_link'><a href="Lazier/Settings.html" title="Lazier::Settings (class)">Settings</a></span></tt>
|
1661
1660
|
|
1662
1661
|
|
1663
1662
|
|
@@ -1715,11 +1714,12 @@ Otherwise the class of the object will returned.</p>
|
|
1715
1714
|
|
1716
1715
|
</div>
|
1717
1716
|
|
1718
|
-
|
1719
|
-
Generated on
|
1717
|
+
<div id="footer">
|
1718
|
+
Generated on Thu Nov 10 11:39:23 2016 by
|
1720
1719
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1721
|
-
0.
|
1720
|
+
0.9.5 (ruby-2.3.0).
|
1722
1721
|
</div>
|
1723
1722
|
|
1723
|
+
</div>
|
1724
1724
|
</body>
|
1725
1725
|
</html>
|