lazier 3.3.6 → 3.3.7

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.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/.travis-gemfile +1 -1
  3. data/Gemfile +1 -1
  4. data/README.md +1 -1
  5. data/Rakefile +1 -1
  6. data/doc/Lazier/Boolean.html +1 -1
  7. data/doc/Lazier/Configuration.html +1 -1
  8. data/doc/Lazier/DateTime/ClassMethods.html +1 -1
  9. data/doc/Lazier/DateTime.html +1 -1
  10. data/doc/Lazier/Exceptions/Debug.html +1 -1
  11. data/doc/Lazier/Exceptions/MissingTranslation.html +1 -1
  12. data/doc/Lazier/Exceptions.html +1 -1
  13. data/doc/Lazier/Hash.html +1 -1
  14. data/doc/Lazier/I18n.html +1 -1
  15. data/doc/Lazier/Localizer.html +1 -1
  16. data/doc/Lazier/Math/ClassMethods.html +1 -1
  17. data/doc/Lazier/Math.html +1 -1
  18. data/doc/Lazier/Object.html +1 -1
  19. data/doc/Lazier/Pathname.html +1 -1
  20. data/doc/Lazier/Settings.html +1 -1
  21. data/doc/Lazier/String.html +1 -1
  22. data/doc/Lazier/TimeZone/ClassMethods.html +1 -1
  23. data/doc/Lazier/TimeZone.html +1 -1
  24. data/doc/Lazier/Version.html +2 -2
  25. data/doc/Lazier.html +2 -2
  26. data/doc/_index.html +1 -1
  27. data/doc/file.README.html +2 -2
  28. data/doc/index.html +2 -2
  29. data/doc/top-level-namespace.html +1 -1
  30. data/lazier.gemspec +2 -2
  31. data/lib/lazier/boolean.rb +1 -1
  32. data/lib/lazier/configuration.rb +1 -1
  33. data/lib/lazier/datetime.rb +1 -1
  34. data/lib/lazier/exceptions.rb +1 -1
  35. data/lib/lazier/hash.rb +1 -1
  36. data/lib/lazier/i18n.rb +1 -1
  37. data/lib/lazier/localizer.rb +1 -1
  38. data/lib/lazier/math.rb +1 -1
  39. data/lib/lazier/object.rb +1 -1
  40. data/lib/lazier/pathname.rb +1 -1
  41. data/lib/lazier/settings.rb +1 -1
  42. data/lib/lazier/string.rb +1 -1
  43. data/lib/lazier/version.rb +2 -2
  44. data/lib/lazier.rb +1 -1
  45. data/locales/en.yml +1 -1
  46. data/locales/it.yml +1 -1
  47. data/spec/coverage_helper.rb +1 -1
  48. data/spec/lazier/boolean_spec.rb +1 -1
  49. data/spec/lazier/configuration_spec.rb +1 -1
  50. data/spec/lazier/datetime_spec.rb +1 -1
  51. data/spec/lazier/hash_spec.rb +1 -1
  52. data/spec/lazier/i18n_spec.rb +1 -1
  53. data/spec/lazier/localizer_spec.rb +1 -1
  54. data/spec/lazier/math_spec.rb +1 -1
  55. data/spec/lazier/object_spec.rb +1 -1
  56. data/spec/lazier/pathname_spec.rb +1 -1
  57. data/spec/lazier/settings_spec.rb +1 -1
  58. data/spec/lazier/string_spec.rb +1 -1
  59. data/spec/lazier_spec.rb +1 -1
  60. data/spec/spec_helper.rb +1 -1
  61. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b5e085f852715730ff841776c4eb3d769a04bf1
4
- data.tar.gz: b636ee333b50bef27b5ae3787c5adb4e181b1538
3
+ metadata.gz: 0d28b349e29528486e4b30f7038f7e9f57ed8354
4
+ data.tar.gz: 4d804191a95d035c887a283ed4545a6bf96c59a6
5
5
  SHA512:
6
- metadata.gz: 3ed15298bc07c2a0a5650cec6855c0d087b265f50f1e7626711ca5af88507c493474ca18a7096b631a199263fbefe184fe2062341acc028059a68498b19214bf
7
- data.tar.gz: 1d6c9a2d833e0740e9310d1b98b60f898a178f9b482015eddbe2fa1db8a02d3d28a8d02fda6d3e598b03b13cc54e78b0ea82a15ff86bf2bea7f1a0bd3ecacf4a
6
+ metadata.gz: 9cce77be66ff4b0c486ede1489b9d95231b2d8824ce2e1372bd5a7e245cc8345ae870552bc669354b53cd13fd6286d7f251293216b43ebe9c18f17515586a3e3
7
+ data.tar.gz: 1e5fae7e70069ccb120304a04c984e9596a9396c1e985cb851fc5e48a172f2daa8d0ca19c054c8343f9589961da5a2d21d5293084e98ab002dcb1639bcfb7f5d
data/.travis-gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/README.md CHANGED
@@ -34,6 +34,6 @@ See documentation for more informations.
34
34
 
35
35
  ## Copyright
36
36
 
37
- Copyright (C) 2013 and above Shogun (shogun_panda@cowtech.it).
37
+ Copyright (C) 2013 and above Shogun (shogun@cowtech.it).
38
38
 
39
39
  Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -288,7 +288,7 @@
288
288
  </div>
289
289
 
290
290
  <div id="footer">
291
- Generated on Sat Aug 17 12:36:37 2013 by
291
+ Generated on Sun Aug 18 16:31:09 2013 by
292
292
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
293
293
  0.8.7 (ruby-2.0.0).
294
294
  </div>
@@ -386,7 +386,7 @@ Options are as follows:</p>
386
386
  </div>
387
387
 
388
388
  <div id="footer">
389
- Generated on Sat Aug 17 12:36:37 2013 by
389
+ Generated on Sun Aug 18 16:31:10 2013 by
390
390
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
391
391
  0.8.7 (ruby-2.0.0).
392
392
  </div>
@@ -1542,7 +1542,7 @@ Date.years(1, true, 2010, true)
1542
1542
  </div>
1543
1543
 
1544
1544
  <div id="footer">
1545
- Generated on Sat Aug 17 12:36:37 2013 by
1545
+ Generated on Sun Aug 18 16:31:09 2013 by
1546
1546
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1547
1547
  0.8.7 (ruby-2.0.0).
1548
1548
  </div>
@@ -721,7 +721,7 @@ DateTime.civil(2013, 6, 1).in_months(2011)
721
721
  </div>
722
722
 
723
723
  <div id="footer">
724
- Generated on Sat Aug 17 12:36:37 2013 by
724
+ Generated on Sun Aug 18 16:31:09 2013 by
725
725
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
726
726
  0.8.7 (ruby-2.0.0).
727
727
  </div>
@@ -124,7 +124,7 @@
124
124
  </div>
125
125
 
126
126
  <div id="footer">
127
- Generated on Sat Aug 17 12:36:37 2013 by
127
+ Generated on Sun Aug 18 16:31:10 2013 by
128
128
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
129
129
  0.8.7 (ruby-2.0.0).
130
130
  </div>
@@ -238,7 +238,7 @@
238
238
  </div>
239
239
 
240
240
  <div id="footer">
241
- Generated on Sat Aug 17 12:36:37 2013 by
241
+ Generated on Sun Aug 18 16:31:10 2013 by
242
242
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
243
243
  0.8.7 (ruby-2.0.0).
244
244
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Sat Aug 17 12:36:37 2013 by
119
+ Generated on Sun Aug 18 16:31:09 2013 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
121
  0.8.7 (ruby-2.0.0).
122
122
  </div>
data/doc/Lazier/Hash.html CHANGED
@@ -212,7 +212,7 @@
212
212
  </div>
213
213
 
214
214
  <div id="footer">
215
- Generated on Sat Aug 17 12:36:36 2013 by
215
+ Generated on Sun Aug 18 16:31:08 2013 by
216
216
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
217
217
  0.8.7 (ruby-2.0.0).
218
218
  </div>
data/doc/Lazier/I18n.html CHANGED
@@ -1062,7 +1062,7 @@
1062
1062
  </div>
1063
1063
 
1064
1064
  <div id="footer">
1065
- Generated on Sat Aug 17 12:36:36 2013 by
1065
+ Generated on Sun Aug 18 16:31:08 2013 by
1066
1066
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1067
1067
  0.8.7 (ruby-2.0.0).
1068
1068
  </div>
@@ -536,7 +536,7 @@
536
536
  </div>
537
537
 
538
538
  <div id="footer">
539
- Generated on Sat Aug 17 12:36:37 2013 by
539
+ Generated on Sun Aug 18 16:31:09 2013 by
540
540
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
541
541
  0.8.7 (ruby-2.0.0).
542
542
  </div>
@@ -321,7 +321,7 @@
321
321
  </div>
322
322
 
323
323
  <div id="footer">
324
- Generated on Sat Aug 17 12:36:36 2013 by
324
+ Generated on Sun Aug 18 16:31:08 2013 by
325
325
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
326
326
  0.8.7 (ruby-2.0.0).
327
327
  </div>
data/doc/Lazier/Math.html CHANGED
@@ -121,7 +121,7 @@
121
121
  </div>
122
122
 
123
123
  <div id="footer">
124
- Generated on Sat Aug 17 12:36:36 2013 by
124
+ Generated on Sun Aug 18 16:31:08 2013 by
125
125
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
126
126
  0.8.7 (ruby-2.0.0).
127
127
  </div>
@@ -2073,7 +2073,7 @@
2073
2073
  </div>
2074
2074
 
2075
2075
  <div id="footer">
2076
- Generated on Sat Aug 17 12:36:37 2013 by
2076
+ Generated on Sun Aug 18 16:31:09 2013 by
2077
2077
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2078
2078
  0.8.7 (ruby-2.0.0).
2079
2079
  </div>
@@ -213,7 +213,7 @@ Pathname.new("/usr/bin/ruby").components
213
213
  </div>
214
214
 
215
215
  <div id="footer">
216
- Generated on Sat Aug 17 12:36:37 2013 by
216
+ Generated on Sun Aug 18 16:31:09 2013 by
217
217
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
218
218
  0.8.7 (ruby-2.0.0).
219
219
  </div>
@@ -2405,7 +2405,7 @@
2405
2405
  </div>
2406
2406
 
2407
2407
  <div id="footer">
2408
- Generated on Sat Aug 17 12:36:37 2013 by
2408
+ Generated on Sun Aug 18 16:31:09 2013 by
2409
2409
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2410
2410
  0.8.7 (ruby-2.0.0).
2411
2411
  </div>
@@ -563,7 +563,7 @@
563
563
  </div>
564
564
 
565
565
  <div id="footer">
566
- Generated on Sat Aug 17 12:36:36 2013 by
566
+ Generated on Sun Aug 18 16:31:08 2013 by
567
567
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
568
568
  0.8.7 (ruby-2.0.0).
569
569
  </div>
@@ -1015,7 +1015,7 @@ DateTime.parameterize_zone(ActiveSupport::TimeZone["Pacific Time (US &amp; Canad
1015
1015
  </div>
1016
1016
 
1017
1017
  <div id="footer">
1018
- Generated on Sat Aug 17 12:36:37 2013 by
1018
+ Generated on Sun Aug 18 16:31:09 2013 by
1019
1019
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1020
1020
  0.8.7 (ruby-2.0.0).
1021
1021
  </div>
@@ -1663,7 +1663,7 @@
1663
1663
  </div>
1664
1664
 
1665
1665
  <div id="footer">
1666
- Generated on Sat Aug 17 12:36:37 2013 by
1666
+ Generated on Sun Aug 18 16:31:09 2013 by
1667
1667
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1668
1668
  0.8.7 (ruby-2.0.0).
1669
1669
  </div>
@@ -149,7 +149,7 @@
149
149
 
150
150
  </div>
151
151
  </dt>
152
- <dd><pre class="code"><span class='int'>6</span></pre></dd>
152
+ <dd><pre class="code"><span class='int'>7</span></pre></dd>
153
153
 
154
154
  <dt id="STRING-constant" class="">STRING =
155
155
  <div class="docstring">
@@ -180,7 +180,7 @@
180
180
  </div>
181
181
 
182
182
  <div id="footer">
183
- Generated on Sat Aug 17 12:36:37 2013 by
183
+ Generated on Sun Aug 18 16:31:09 2013 by
184
184
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
185
185
  0.8.7 (ruby-2.0.0).
186
186
  </div>
data/doc/Lazier.html CHANGED
@@ -88,7 +88,7 @@
88
88
 
89
89
  <h2>Overview</h2><div class="docstring">
90
90
  <div class="discussion">
91
- <p>This file is part of the lazier gem. Copyright (C) 2013 and above Shogun &lt;shogun_panda@cowtech.it&gt;.
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
92
  Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
93
93
 
94
94
 
@@ -969,7 +969,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
969
969
  </div>
970
970
 
971
971
  <div id="footer">
972
- Generated on Sat Aug 17 12:36:36 2013 by
972
+ Generated on Sun Aug 18 16:31:08 2013 by
973
973
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
974
974
  0.8.7 (ruby-2.0.0).
975
975
  </div>
data/doc/_index.html CHANGED
@@ -333,7 +333,7 @@
333
333
  </div>
334
334
 
335
335
  <div id="footer">
336
- Generated on Sat Aug 17 12:36:36 2013 by
336
+ Generated on Sun Aug 18 16:31:08 2013 by
337
337
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
338
338
  0.8.7 (ruby-2.0.0).
339
339
  </div>
data/doc/file.README.html CHANGED
@@ -99,13 +99,13 @@ See documentation for more informations.</p>
99
99
 
100
100
  <h2 id="copyright">Copyright</h2>
101
101
 
102
- <p>Copyright (C) 2013 and above Shogun (shogun_panda@cowtech.it).</p>
102
+ <p>Copyright (C) 2013 and above Shogun (shogun@cowtech.it).</p>
103
103
 
104
104
  <p>Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
105
105
  </div></div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Sat Aug 17 12:36:36 2013 by
108
+ Generated on Sun Aug 18 16:31:08 2013 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.8.7 (ruby-2.0.0).
111
111
  </div>
data/doc/index.html CHANGED
@@ -99,13 +99,13 @@ See documentation for more informations.</p>
99
99
 
100
100
  <h2 id="copyright">Copyright</h2>
101
101
 
102
- <p>Copyright (C) 2013 and above Shogun (shogun_panda@cowtech.it).</p>
102
+ <p>Copyright (C) 2013 and above Shogun (shogun@cowtech.it).</p>
103
103
 
104
104
  <p>Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
105
105
  </div></div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Sat Aug 17 12:36:36 2013 by
108
+ Generated on Sun Aug 18 16:31:08 2013 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.8.7 (ruby-2.0.0).
111
111
  </div>
@@ -103,7 +103,7 @@
103
103
  </div>
104
104
 
105
105
  <div id="footer">
106
- Generated on Sat Aug 17 12:36:36 2013 by
106
+ Generated on Sun Aug 18 16:31:08 2013 by
107
107
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
108
108
  0.8.7 (ruby-2.0.0).
109
109
  </div>
data/lazier.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.rubyforge_project = "lazier"
16
16
 
17
17
  gem.authors = ["Shogun"]
18
- gem.email = ["shogun_panda@cowtech.it"]
18
+ gem.email = ["shogun@cowtech.it"]
19
19
 
20
20
  gem.files = `git ls-files`.split($\)
21
21
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/lazier/hash.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/lazier/i18n.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/lazier/math.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/lazier/object.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/lib/lazier/string.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -16,7 +16,7 @@ module Lazier
16
16
  MINOR = 3
17
17
 
18
18
  # The patch version.
19
- PATCH = 6
19
+ PATCH = 7
20
20
 
21
21
  # The current version of lazier.
22
22
  STRING = [MAJOR, MINOR, PATCH].compact.join(".")
data/lib/lazier.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/locales/en.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/locales/it.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/spec/lazier_spec.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  #
3
- # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun_panda@cowtech.it>.
3
+ # This file is part of the lazier gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
4
4
  # Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
5
5
  #
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lazier
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.6
4
+ version: 3.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shogun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-17 00:00:00.000000000 Z
11
+ date: 2013-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -82,7 +82,7 @@ dependencies:
82
82
  version: 2.0.5
83
83
  description: Several Ruby object enhancements.
84
84
  email:
85
- - shogun_panda@cowtech.it
85
+ - shogun@cowtech.it
86
86
  executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []