lazier 4.2.1 → 4.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +6 -1
  4. data/.travis-gemfile +4 -5
  5. data/.travis.yml +5 -3
  6. data/.yardopts +1 -1
  7. data/Gemfile +6 -6
  8. data/README.md +7 -5
  9. data/{doc → docs}/Lazier.html +83 -83
  10. data/{doc → docs}/Lazier/Boolean.html +49 -46
  11. data/{doc → docs}/Lazier/Configuration.html +51 -48
  12. data/{doc → docs}/Lazier/DateTime.html +51 -48
  13. data/{doc → docs}/Lazier/DateTime/ClassMethods.html +52 -50
  14. data/{doc → docs}/Lazier/Exceptions.html +39 -37
  15. data/{doc → docs}/Lazier/Exceptions/Debug.html +45 -42
  16. data/{doc → docs}/Lazier/Exceptions/MissingTranslation.html +48 -45
  17. data/{doc → docs}/Lazier/Exceptions/TranslationExceptionHandler.html +48 -45
  18. data/{doc → docs}/Lazier/Hash.html +61 -60
  19. data/{doc → docs}/Lazier/I18n.html +72 -72
  20. data/{doc → docs}/Lazier/Math.html +44 -41
  21. data/{doc → docs}/Lazier/Math/ClassMethods.html +44 -42
  22. data/{doc → docs}/Lazier/Object.html +106 -105
  23. data/{doc → docs}/Lazier/Pathname.html +47 -44
  24. data/{doc → docs}/Lazier/Settings.html +72 -69
  25. data/{doc → docs}/Lazier/String.html +55 -52
  26. data/{doc → docs}/Lazier/TimeZone.html +78 -77
  27. data/{doc → docs}/Lazier/TimeZone/ClassMethods.html +54 -52
  28. data/docs/Lazier/Version.html +189 -0
  29. data/{doc → docs}/_index.html +29 -30
  30. data/docs/class_list.html +51 -0
  31. data/{doc → docs}/css/common.css +0 -0
  32. data/{doc → docs}/css/full_list.css +32 -31
  33. data/{doc → docs}/css/style.css +220 -78
  34. data/{doc → docs}/file.README.html +35 -34
  35. data/docs/file_list.html +56 -0
  36. data/docs/frames.html +17 -0
  37. data/{doc → docs}/index.html +35 -34
  38. data/{doc → docs}/js/app.js +100 -76
  39. data/docs/js/full_list.js +216 -0
  40. data/{doc → docs}/js/jquery.js +0 -0
  41. data/docs/method_list.html +883 -0
  42. data/docs/top-level-namespace.html +112 -0
  43. data/lazier.gemspec +5 -5
  44. data/lib/lazier/version.rb +1 -1
  45. metadata +42 -43
  46. data/doc/Lazier/Version.html +0 -189
  47. data/doc/class_list.html +0 -58
  48. data/doc/file_list.html +0 -60
  49. data/doc/frames.html +0 -26
  50. data/doc/js/full_list.js +0 -181
  51. data/doc/method_list.html +0 -681
  52. data/doc/top-level-namespace.html +0 -112
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 80a4c0c2841cf820d18204dfc416cb41e4521c03
4
- data.tar.gz: c20da0c4e144b6abc2ede0cd71880c02c7c6877b
3
+ metadata.gz: 1f65c5409fa2f96712509a043fdc0b31b1964201
4
+ data.tar.gz: 286e4328ba2c0762d073050bf6703e9d31cc835a
5
5
  SHA512:
6
- metadata.gz: 5d07f997c85fdc6b96235140fb762923f311648bf1addb939f5b3b841c1e9a1882d4cbd8e4fa1833cd02227fb97b801aba983c2cc756c1ae1bd738baf724fbd9
7
- data.tar.gz: 1c681a96bf11099975e49af5db9e601ffcaea05550b380c6b59326842fc3c89f9be83eab8adfa83ca1b91860409e69990ed953b58bd07ad233d0cf54aba380a9
6
+ metadata.gz: 72d76c42a070c9b7ae8ce33856ac99d17d37658a9b1d2f7e393337ed9a807e9635bfce0c59f5f8a15a016cb8f1d07e2f384bcf00b8a09db5a5cd73cdd9146bc4
7
+ data.tar.gz: eeddf143eeb03af3966549020d0d0da4d946f9d2f9fe0877054cb919ac48c89257fa3fbb387c98e5d83082a02b5d3f766e568decae4937e26d13a5edb3db42c9
data/.gitignore CHANGED
@@ -3,6 +3,7 @@ tester.rb
3
3
  coverage/
4
4
  pkg/
5
5
  tmp/
6
+ .history/
6
7
  .idea/
7
8
  .yardoc/
8
9
  .bundle
@@ -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
@@ -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.1"
13
- gem "rake", "~> 10.3"
14
- gem "simplecov", ">= 0.9"
15
- gem "coveralls", ">= 0.7", require: false
11
+ gem "rspec", "~> 3.5"
12
+ gem "rake", "~> 11.3"
13
+ gem "simplecov", "~> 0.12"
14
+ gem "coveralls", "~> 0.8", require: false
@@ -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.4"
13
- gem "rake", "~> 11.0"
12
+ gem "rspec", "~> 3.5"
13
+ gem "rake", "~> 11.3"
14
14
 
15
15
  # Documentation
16
- gem "simplecov", "~> 0.11"
16
+ gem "simplecov", "~> 0.12"
17
17
  gem "coveralls", "~> 0.8", require: false
18
18
  gem "pry", "~> 0.10"
19
- gem "yard", "~> 0.8"
20
- gem "kramdown", "~> 1.10"
19
+ gem "yard", "~> 0.9"
20
+ gem "kramdown", "~> 1.12"
21
21
  gem "github-markup", "~> 1.4"
22
- gem "rubocop", "~> 0.39"
22
+ gem "rubocop", "~> 0.45"
data/README.md CHANGED
@@ -4,13 +4,11 @@
4
4
  [![Dependency Status](https://gemnasium.com/ShogunPanda/lazier.png?travis)](https://gemnasium.com/ShogunPanda/lazier)
5
5
  [![Build Status](https://secure.travis-ci.org/ShogunPanda/lazier.png?branch=master)](http://travis-ci.org/ShogunPanda/lazier)
6
6
  [![Code Climate](https://codeclimate.com/github/ShogunPanda/lazier.png)](https://codeclimate.com/github/ShogunPanda/lazier)
7
- [![Coverage Status](https://coveralls.io/repos/ShogunPanda/lazier/badge.png)](https://coveralls.io/r/ShogunPanda/lazier)
7
+ [![Coverage Status](https://coveralls.io/repos/github/ShogunPanda/lazier/badge.svg?branch=master)](https://coveralls.io/github/ShogunPanda/lazier?branch=master)
8
8
 
9
9
  Several Ruby object enhancements.
10
10
 
11
- http://sw.cowtech.it/lazier
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.
@@ -1,12 +1,12 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1
+ <!DOCTYPE html>
2
+ <html>
4
3
  <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
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
- &mdash; Documentation by YARD 0.8.7.6
9
+ &mdash; 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
- hasFrames = window.top.frames.main ? true : false;
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 id="header">
32
- <div id="menu">
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> &raquo;
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
- <div id="search">
46
+ <div id="search">
44
47
 
45
48
  <a class="full_list_link" id="class_list_link"
46
49
  href="class_list.html">
47
- Class List
48
- </a>
49
-
50
- <a class="full_list_link" id="method_list_link"
51
- href="method_list.html">
52
- Method List
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
- <div class="clear"></div>
62
- </div>
59
+ <div class="clear"></div>
60
+ </div>
63
61
 
64
- <iframe id="search_frame"></iframe>
62
+ <iframe id="search_frame" src="class_list.html"></iframe>
65
63
 
66
- <div id="content"><h1>Module: Lazier
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
- <dt class="r1 last">Defined in:</dt>
82
- <dd class="r1 last">lib/lazier.rb<span class="defines">,<br />
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
- </dl>
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="&#109;&#097;&#105;&#108;&#116;&#111;:&#115;&#104;&#111;&#103;&#117;&#110;&#064;&#099;&#111;&#119;&#116;&#101;&#099;&#104;&#046;&#105;&#116;">&#115;&#104;&#111;&#103;&#117;&#110;&#064;&#099;&#111;&#119;&#116;&#101;&#099;&#104;&#046;&#105;&#116;</a>.
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
- <dl class="constants">
116
-
117
- <dt id="ROOT-constant" class="">ROOT =
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
- </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'>&quot;</span><span class='tstring_content'>/../</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span></pre></dd>
131
-
132
- </dl>
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'>&quot;</span><span class='tstring_content'>/../</span><span class='tstring_end'>&quot;</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>(<a href="#" class="summary_toggle">collapse</a>)</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)">+ (Float|String) <strong>benchmark</strong>(message: nil, precision: 0, &amp;block) </a>
151
+ <a href="#benchmark-class_method" title="benchmark (class method)">.<strong>benchmark</strong>(message: nil, precision: 0, &amp;block) &#x21d2; 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)">+ (Object) <strong>clean_hash_compact</strong> </a>
174
+ <a href="#clean_hash_compact-class_method" title="clean_hash_compact (class method)">.<strong>clean_hash_compact</strong> &#x21d2; 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)">+ (Class) <strong>find_class</strong>(cls, scope = &quot;::@&quot;, only_in_scope = false) </a>
197
+ <a href="#find_class-class_method" title="find_class (class method)">.<strong>find_class</strong>(cls, scope = &quot;::@&quot;, only_in_scope = false) &#x21d2; 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)">+ (Settings) <strong>load!</strong>(*what) </a>
220
+ <a href="#load%21-class_method" title="load! (class method)">.<strong>load!</strong>(*what) &#x21d2; 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)">+ (Object) <strong>load_boolean</strong> </a>
243
+ <a href="#load_boolean-class_method" title="load_boolean (class method)">.<strong>load_boolean</strong> &#x21d2; 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)">+ (Object) <strong>load_datetime</strong> </a>
266
+ <a href="#load_datetime-class_method" title="load_datetime (class method)">.<strong>load_datetime</strong> &#x21d2; 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)">+ (Object) <strong>load_hash</strong> </a>
289
+ <a href="#load_hash-class_method" title="load_hash (class method)">.<strong>load_hash</strong> &#x21d2; 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)">+ (Object) <strong>load_math</strong> </a>
312
+ <a href="#load_math-class_method" title="load_math (class method)">.<strong>load_math</strong> &#x21d2; 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)">+ (Object) <strong>load_object</strong> </a>
335
+ <a href="#load_object-class_method" title="load_object (class method)">.<strong>load_object</strong> &#x21d2; 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)">+ (Object) <strong>load_pathname</strong> </a>
358
+ <a href="#load_pathname-class_method" title="load_pathname (class method)">.<strong>load_pathname</strong> &#x21d2; 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)">+ (Object) <strong>load_string</strong> </a>
381
+ <a href="#load_string-class_method" title="load_string (class method)">.<strong>load_string</strong> &#x21d2; 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)">+ (Array) <strong>loaded_modules</strong> </a>
404
+ <a href="#loaded_modules-class_method" title="loaded_modules (class method)">.<strong>loaded_modules</strong> &#x21d2; 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)">+ (Boolean) <strong>modules_loaded?</strong>(*modules) </a>
427
+ <a href="#modules_loaded%3F-class_method" title="modules_loaded? (class method)">.<strong>modules_loaded?</strong>(*modules) &#x21d2; 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)">+ (Object) <strong>perform_load</strong>(mod, target = nil, extension = nil, &amp;block) </a>
450
+ <a href="#perform_load-class_method" title="perform_load (class method)">.<strong>perform_load</strong>(mod, target = nil, extension = nil, &amp;block) &#x21d2; 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)">+ (Boolean, Symbol) <strong>platform</strong>(force = false) </a>
473
+ <a href="#platform-class_method" title="platform (class method)">.<strong>platform</strong>(force = false) &#x21d2; 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)">+ (Object) <strong>search_class</strong>(cls, scope = nil) </a>
496
+ <a href="#search_class-class_method" title="search_class (class method)">.<strong>search_class</strong>(cls, scope = nil) &#x21d2; 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)">+ (Settings) <strong>settings</strong> </a>
519
+ <a href="#settings-class_method" title="settings (class method)">.<strong>settings</strong> &#x21d2; 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
- + (<tt>Float|<span class='object_link'><a href="Lazier/String.html" title="Lazier::String (module)">String</a></span></tt>) <strong>benchmark</strong>(message: nil, precision: 0, &amp;block)
551
+ .<strong>benchmark</strong>(message: nil, precision: 0, &amp;block) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>clean_hash_compact</strong>
660
+ .<strong>clean_hash_compact</strong> &#x21d2; <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
- + (<tt>Class</tt>) <strong>find_class</strong>(cls, scope = &quot;::@&quot;, only_in_scope = false)
706
+ .<strong>find_class</strong>(cls, scope = &quot;::@&quot;, only_in_scope = false) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Settings.html" title="Lazier::Settings (class)">Settings</a></span></tt>) <strong>load!</strong>(*what)
829
+ .<strong>load!</strong>(*what) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_boolean</strong>
1039
+ .<strong>load_boolean</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_datetime</strong>
1093
+ .<strong>load_datetime</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_hash</strong>
1149
+ .<strong>load_hash</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_math</strong>
1199
+ .<strong>load_math</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_object</strong>
1241
+ .<strong>load_object</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_pathname</strong>
1283
+ .<strong>load_pathname</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>load_string</strong>
1323
+ .<strong>load_string</strong> &#x21d2; <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
- + (<tt>Array</tt>) <strong>loaded_modules</strong>
1363
+ .<strong>loaded_modules</strong> &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Boolean.html" title="Lazier::Boolean (module)">Boolean</a></span></tt>) <strong>modules_loaded?</strong>(*modules)
1420
+ .<strong>modules_loaded?</strong>(*modules) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>perform_load</strong>(mod, target = nil, extension = nil, &amp;block)
1477
+ .<strong>perform_load</strong>(mod, target = nil, extension = nil, &amp;block) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Boolean.html" title="Lazier::Boolean (module)">Boolean</a></span></tt>, <tt>Symbol</tt>) <strong>platform</strong>(force = false)
1527
+ .<strong>platform</strong>(force = false) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Object.html" title="Lazier::Object (module)">Object</a></span></tt>) <strong>search_class</strong>(cls, scope = nil)
1613
+ .<strong>search_class</strong>(cls, scope = nil) &#x21d2; <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
- + (<tt><span class='object_link'><a href="Lazier/Settings.html" title="Lazier::Settings (class)">Settings</a></span></tt>) <strong>settings</strong>
1659
+ .<strong>settings</strong> &#x21d2; <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
- <div id="footer">
1719
- Generated on Tue Mar 29 11:11:36 2016 by
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.8.7.6 (ruby-2.3.0).
1720
+ 0.9.5 (ruby-2.3.0).
1722
1721
  </div>
1723
1722
 
1723
+ </div>
1724
1724
  </body>
1725
1725
  </html>