apes 1.0.1 → 1.0.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.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/.travis-gemfile +1 -1
  4. data/.travis.yml +1 -4
  5. data/.yardopts +1 -1
  6. data/CHANGELOG.md +8 -0
  7. data/Gemfile +1 -1
  8. data/LICENSE.md +21 -0
  9. data/README.md +22 -16
  10. data/Rakefile +1 -1
  11. data/apes.gemspec +1 -1
  12. data/{doc → docs}/Apes.html +1 -1
  13. data/{doc → docs}/Apes/Concerns.html +1 -1
  14. data/{doc → docs}/Apes/Concerns/Errors.html +1 -1
  15. data/{doc → docs}/Apes/Concerns/Pagination.html +1 -1
  16. data/{doc → docs}/Apes/Concerns/Request.html +1 -1
  17. data/{doc → docs}/Apes/Concerns/Response.html +1 -1
  18. data/{doc → docs}/Apes/Controller.html +1 -1
  19. data/{doc → docs}/Apes/Errors.html +1 -1
  20. data/{doc → docs}/Apes/Errors/AuthenticationError.html +1 -1
  21. data/{doc → docs}/Apes/Errors/BadRequestError.html +1 -1
  22. data/{doc → docs}/Apes/Errors/BaseError.html +1 -1
  23. data/{doc → docs}/Apes/Errors/InvalidDataError.html +1 -1
  24. data/{doc → docs}/Apes/Errors/MissingDataError.html +1 -1
  25. data/{doc → docs}/Apes/Model.html +1 -1
  26. data/{doc → docs}/Apes/PaginationCursor.html +1 -1
  27. data/{doc → docs}/Apes/RuntimeConfiguration.html +1 -1
  28. data/{doc → docs}/Apes/Serializers.html +1 -1
  29. data/{doc → docs}/Apes/Serializers/JSON.html +1 -1
  30. data/{doc → docs}/Apes/Serializers/JWT.html +1 -1
  31. data/{doc → docs}/Apes/Serializers/List.html +1 -1
  32. data/{doc → docs}/Apes/UrlsParser.html +1 -1
  33. data/{doc → docs}/Apes/Validators.html +1 -1
  34. data/{doc → docs}/Apes/Validators/BaseValidator.html +1 -1
  35. data/{doc → docs}/Apes/Validators/BooleanValidator.html +1 -1
  36. data/{doc → docs}/Apes/Validators/EmailValidator.html +1 -1
  37. data/{doc → docs}/Apes/Validators/PhoneValidator.html +1 -1
  38. data/{doc → docs}/Apes/Validators/ReferenceValidator.html +1 -1
  39. data/{doc → docs}/Apes/Validators/TimestampValidator.html +1 -1
  40. data/{doc → docs}/Apes/Validators/UuidValidator.html +1 -1
  41. data/{doc → docs}/Apes/Validators/ZipCodeValidator.html +1 -1
  42. data/{doc → docs}/Apes/Version.html +1 -1
  43. data/{doc → docs}/_index.html +1 -1
  44. data/{doc → docs}/class_list.html +0 -0
  45. data/{doc → docs}/css/common.css +0 -0
  46. data/{doc → docs}/css/full_list.css +0 -0
  47. data/{doc → docs}/css/style.css +0 -0
  48. data/{doc → docs}/file.README.html +7 -5
  49. data/{doc → docs}/file_list.html +0 -0
  50. data/{doc → docs}/frames.html +0 -0
  51. data/{doc → docs}/index.html +7 -5
  52. data/{doc → docs}/js/app.js +0 -0
  53. data/{doc → docs}/js/full_list.js +0 -0
  54. data/{doc → docs}/js/jquery.js +0 -0
  55. data/{doc → docs}/method_list.html +0 -0
  56. data/{doc → docs}/top-level-namespace.html +1 -1
  57. data/lib/apes.rb +1 -1
  58. data/lib/apes/concerns/errors.rb +1 -1
  59. data/lib/apes/concerns/pagination.rb +1 -1
  60. data/lib/apes/concerns/request.rb +1 -1
  61. data/lib/apes/concerns/response.rb +1 -1
  62. data/lib/apes/controller.rb +1 -1
  63. data/lib/apes/errors.rb +1 -1
  64. data/lib/apes/model.rb +1 -1
  65. data/lib/apes/pagination_cursor.rb +1 -1
  66. data/lib/apes/runtime_configuration.rb +1 -1
  67. data/lib/apes/serializers.rb +1 -1
  68. data/lib/apes/urls_parser.rb +1 -1
  69. data/lib/apes/validators.rb +1 -1
  70. data/lib/apes/version.rb +2 -2
  71. data/spec/apes/controller_spec.rb +1 -1
  72. data/spec/apes/errors_spec.rb +1 -1
  73. data/spec/apes/models_spec.rb +1 -1
  74. data/spec/apes/pagination_cursor_spec.rb +1 -1
  75. data/spec/apes/runtime_configuration_spec.rb +1 -1
  76. data/spec/apes/serializers_spec.rb +1 -1
  77. data/spec/apes/urls_parser_spec.rb +1 -1
  78. data/spec/apes/validators_spec.rb +1 -1
  79. data/spec/spec_helper.rb +1 -1
  80. metadata +49 -75
  81. data/doc/ApplicationController.html +0 -547
  82. data/doc/Concerns.html +0 -128
  83. data/doc/Concerns/ErrorHandling.html +0 -826
  84. data/doc/Concerns/PaginationHandling.html +0 -463
  85. data/doc/Concerns/RequestHandling.html +0 -512
  86. data/doc/Concerns/ResponseHandling.html +0 -579
  87. data/doc/Errors.html +0 -126
  88. data/doc/Errors/AuthenticationError.html +0 -123
  89. data/doc/Errors/BadRequestError.html +0 -147
  90. data/doc/Errors/BaseError.html +0 -289
  91. data/doc/Errors/InvalidDataError.html +0 -147
  92. data/doc/Errors/MissingDataError.html +0 -147
  93. data/doc/Model.html +0 -315
  94. data/doc/PaginationCursor.html +0 -764
  95. data/doc/Serializers.html +0 -126
  96. data/doc/Serializers/JSON.html +0 -253
  97. data/doc/Serializers/JWT.html +0 -253
  98. data/doc/Serializers/List.html +0 -245
  99. data/doc/Validators.html +0 -126
  100. data/doc/Validators/BaseValidator.html +0 -209
  101. data/doc/Validators/BooleanValidator.html +0 -391
  102. data/doc/Validators/EmailValidator.html +0 -298
  103. data/doc/Validators/PhoneValidator.html +0 -313
  104. data/doc/Validators/ReferenceValidator.html +0 -284
  105. data/doc/Validators/TimestampValidator.html +0 -476
  106. data/doc/Validators/UuidValidator.html +0 -310
  107. data/doc/Validators/ZipCodeValidator.html +0 -310
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a4b6fab1b14d71ede16a3f88bb76667ca6b8060
4
- data.tar.gz: f2064a34117073756dc3d358000e17e8557d6df2
3
+ metadata.gz: 8e1899be0283d188caf4e5a3dac48e38c0eacbd6
4
+ data.tar.gz: 0fa44609c3c9877863bee1a1c791ba6c52144dae
5
5
  SHA512:
6
- metadata.gz: b28248a214851797484557cbe137b73105f322248b1c4bd853bd6928366d9edd8860a28acd7b7e2a8c088ae614c353626cc3c3d4b1a8d7e610fe7b6d65ce8250
7
- data.tar.gz: d03abf06b7810967502130cecbdcaebe6384799ec52c746db0f579e37f7466136b7d29a5ef483a9e99efe61576e249e9374ee8705b5a4c8561c9432c44fe9e37
6
+ metadata.gz: d668964061552af1590172260a16c075000677c08b7a0f16964d6516feadd0ea7cecc239285f97fce1fd231fa835b9fb10d201f50ce9b90f9a0fa39df8b47a5c
7
+ data.tar.gz: c86f6bf779b39c817ce28f241830a444f7a730e0d89dde9383223567fc8e8214182379ba5982d115b2c2464a1be22f8f6eb828adfef34151dc305a5f13b0c8dc
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # This file is part of the apes gem. Copyright (C) 2016 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.
3
+ # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
4
4
  #
5
5
 
6
6
  AllCops:
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # This file is part of the apes gem. Copyright (C) 2016 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.
3
+ # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
4
4
  #
5
5
 
6
6
  source "http://rubygems.org"
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # This file is part of the apes gem. Copyright (C) 2016 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.
3
+ # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
4
4
  #
5
5
 
6
6
  language: ruby
@@ -10,6 +10,3 @@ script: bundle exec rake spec:ci
10
10
  gemfile: .travis-gemfile
11
11
  notifications:
12
12
  email: false
13
- addons:
14
- code_climate:
15
- repo_token:
data/.yardopts CHANGED
@@ -1 +1 @@
1
- -m markdown
1
+ -o ./docs -m markdown
@@ -1,3 +1,11 @@
1
+ ### 2018-06-18 / 1.0.2
2
+
3
+ * chore: End of development notice.
4
+ * Updated license links and badges.
5
+ * Updated license links and badges.
6
+ * Updated docs location.
7
+ * Updated docs.
8
+
1
9
  ### 2016-06-14 / 1.0.1
2
10
 
3
11
  * Try to use the Origin request header first in CORS handling.
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # This file is part of the apes gem. Copyright (C) 2016 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.
3
+ # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
4
4
  #
5
5
 
6
6
  source "http://rubygems.org"
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (C) 2018 and above Shogun <shogun@cowtech.it>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,16 +1,18 @@
1
1
  # apes
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/apes.png)](http://badge.fury.io/rb/apes)
4
- [![Dependency Status](https://gemnasium.com/ShogunPanda/apes.png?travis)](https://gemnasium.com/ShogunPanda/apes)
5
- [![Build Status](https://secure.travis-ci.org/ShogunPanda/apes.png?branch=master)](http://travis-ci.org/ShogunPanda/apes)
6
- [![Coverage Status](https://coveralls.io/repos/ShogunPanda/apes/badge.png)](https://coveralls.io/r/ShogunPanda/apes)
3
+ [![Gem Version](https://img.shields.io/gem/v/apes.svg)](https://rubygems.org/gems/apes)
4
+ [![Dependency Status](https://img.shields.io/gemnasium/ShogunPanda/apes.svg)](https://gemnasium.com/ShogunPanda/apes)
5
+ [![Build Status](https://img.shields.io/travis/ShogunPanda/apes.svg)](http://travis-ci.org/ShogunPanda/apes)
6
+ [![Coverage Status](https://img.shields.io/coveralls/github/ShogunPanda/apes.svg)](https://coveralls.io/github/ShogunPanda/apes)
7
+
8
+ ## END OF DEVELOPMENT NOTICE
9
+
10
+ # This gem has been discontinued.
7
11
 
8
12
  A tiny JSON API framework for Ruby on Rails.
9
13
 
10
14
  https://sw.cowtech.it/apes
11
15
 
12
- https://github.com/ShogunPanda/apes
13
-
14
16
  # Introduction
15
17
 
16
18
  Apes makes it easy to deal with [JSON API](http://jsonapi.org/) by abstracting all the oddities of the specification.
@@ -76,7 +78,7 @@ end
76
78
 
77
79
  By definining the `ATTRIBUTES` and `RELATIONSHIPS` in your model, you can ensure no invalid attributes are provided.
78
80
 
79
- ```
81
+ ```ruby
80
82
  class Appointment < ApplicationRecord
81
83
  ATTRIBUTES = [:user, :assignee, :date, :reason].freeze
82
84
  RELATIONSHIPS = {user: nil, assignee: User}.freeze
@@ -146,7 +148,7 @@ json.relationships do
146
148
  json.links({related: user_url(object.assignee)})
147
149
  response_included(object.assignee) unless included
148
150
  end
149
-
151
+
150
152
  json.user do
151
153
  json.data({type: "user", id: object.user.to_param})
152
154
  json.links({related: user_url(object.user)})
@@ -161,17 +163,21 @@ end
161
163
  json.meta(meta) if local_assigns.key?(:meta)
162
164
  ```
163
165
 
166
+ ## API Documentation
167
+
168
+ The API documentation can be found [here](https://sw.cowtech.it/apes/docs).
169
+
164
170
  ## Contributing to apes
165
171
 
166
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
167
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
168
- * Fork the project.
169
- * Start a feature/bugfix branch.
170
- * Commit and push until you are happy with your contribution.
171
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
172
+ - Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
173
+ - Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
174
+ - Fork the project.
175
+ - Start a feature/bugfix branch.
176
+ - Commit and push until you are happy with your contribution.
177
+ - Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
172
178
 
173
179
  ## Copyright
174
180
 
175
- Copyright (C) 2016 and above Shogun <shogun@cowtech.it>.
181
+ Copyright (C) 2016 and above Shogun <mailto:shogun@cowtech.it>.
176
182
 
177
- Licensed under the MIT license, which can be found at http://opensource.org/licenses/MIT.
183
+ Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # This file is part of the apes gem. Copyright (C) 2016 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.
3
+ # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
4
4
  #
5
5
 
6
6
  require "bundler/gem_tasks"
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # This file is part of the apes gem. Copyright (C) 2016 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.
3
+ # Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
4
4
  #
5
5
 
6
6
  require File.expand_path("../lib/apes/version", __FILE__)
@@ -121,7 +121,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
121
121
  </div>
122
122
 
123
123
  <div id="footer">
124
- Generated on Tue Jun 14 10:21:03 2016 by
124
+ Generated on Thu Aug 18 15:49:46 2016 by
125
125
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
126
126
  0.8.7.6 (ruby-2.3.0).
127
127
  </div>
@@ -118,7 +118,7 @@
118
118
  </div>
119
119
 
120
120
  <div id="footer">
121
- Generated on Tue Jun 14 10:21:04 2016 by
121
+ Generated on Thu Aug 18 15:49:46 2016 by
122
122
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
123
123
  0.8.7.6 (ruby-2.3.0).
124
124
  </div>
@@ -1080,7 +1080,7 @@
1080
1080
  </div>
1081
1081
 
1082
1082
  <div id="footer">
1083
- Generated on Tue Jun 14 10:21:04 2016 by
1083
+ Generated on Thu Aug 18 15:49:46 2016 by
1084
1084
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1085
1085
  0.8.7.6 (ruby-2.3.0).
1086
1086
  </div>
@@ -627,7 +627,7 @@
627
627
  </div>
628
628
 
629
629
  <div id="footer">
630
- Generated on Tue Jun 14 10:21:04 2016 by
630
+ Generated on Thu Aug 18 15:49:46 2016 by
631
631
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
632
632
  0.8.7.6 (ruby-2.3.0).
633
633
  </div>
@@ -753,7 +753,7 @@
753
753
  </div>
754
754
 
755
755
  <div id="footer">
756
- Generated on Tue Jun 14 10:21:04 2016 by
756
+ Generated on Thu Aug 18 15:49:46 2016 by
757
757
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
758
758
  0.8.7.6 (ruby-2.3.0).
759
759
  </div>
@@ -931,7 +931,7 @@
931
931
  </div>
932
932
 
933
933
  <div id="footer">
934
- Generated on Tue Jun 14 10:21:04 2016 by
934
+ Generated on Thu Aug 18 15:49:46 2016 by
935
935
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
936
936
  0.8.7.6 (ruby-2.3.0).
937
937
  </div>
@@ -1091,7 +1091,7 @@ It ensures that the host is always included and that is set properly in developm
1091
1091
  </div>
1092
1092
 
1093
1093
  <div id="footer">
1094
- Generated on Tue Jun 14 10:21:04 2016 by
1094
+ Generated on Thu Aug 18 15:49:46 2016 by
1095
1095
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1096
1096
  0.8.7.6 (ruby-2.3.0).
1097
1097
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Tue Jun 14 10:21:04 2016 by
119
+ Generated on Thu Aug 18 15:49:46 2016 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
121
  0.8.7.6 (ruby-2.3.0).
122
122
  </div>
@@ -124,7 +124,7 @@
124
124
  </div>
125
125
 
126
126
  <div id="footer">
127
- Generated on Tue Jun 14 10:21:04 2016 by
127
+ Generated on Thu Aug 18 15:49:46 2016 by
128
128
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
129
129
  0.8.7.6 (ruby-2.3.0).
130
130
  </div>
@@ -148,7 +148,7 @@
148
148
  </div>
149
149
 
150
150
  <div id="footer">
151
- Generated on Tue Jun 14 10:21:04 2016 by
151
+ Generated on Thu Aug 18 15:49:46 2016 by
152
152
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
153
153
  0.8.7.6 (ruby-2.3.0).
154
154
  </div>
@@ -311,7 +311,7 @@
311
311
  </div>
312
312
 
313
313
  <div id="footer">
314
- Generated on Tue Jun 14 10:21:04 2016 by
314
+ Generated on Thu Aug 18 15:49:46 2016 by
315
315
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
316
316
  0.8.7.6 (ruby-2.3.0).
317
317
  </div>
@@ -148,7 +148,7 @@
148
148
  </div>
149
149
 
150
150
  <div id="footer">
151
- Generated on Tue Jun 14 10:21:04 2016 by
151
+ Generated on Thu Aug 18 15:49:46 2016 by
152
152
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
153
153
  0.8.7.6 (ruby-2.3.0).
154
154
  </div>
@@ -148,7 +148,7 @@
148
148
  </div>
149
149
 
150
150
  <div id="footer">
151
- Generated on Tue Jun 14 10:21:04 2016 by
151
+ Generated on Thu Aug 18 15:49:46 2016 by
152
152
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
153
153
  0.8.7.6 (ruby-2.3.0).
154
154
  </div>
@@ -369,7 +369,7 @@
369
369
  </div>
370
370
 
371
371
  <div id="footer">
372
- Generated on Tue Jun 14 10:21:04 2016 by
372
+ Generated on Thu Aug 18 15:49:46 2016 by
373
373
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
374
374
  0.8.7.6 (ruby-2.3.0).
375
375
  </div>
@@ -2129,7 +2129,7 @@
2129
2129
  </div>
2130
2130
 
2131
2131
  <div id="footer">
2132
- Generated on Tue Jun 14 10:21:05 2016 by
2132
+ Generated on Thu Aug 18 15:49:47 2016 by
2133
2133
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2134
2134
  0.8.7.6 (ruby-2.3.0).
2135
2135
  </div>
@@ -900,7 +900,7 @@
900
900
  </div>
901
901
 
902
902
  <div id="footer">
903
- Generated on Tue Jun 14 10:21:05 2016 by
903
+ Generated on Thu Aug 18 15:49:47 2016 by
904
904
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
905
905
  0.8.7.6 (ruby-2.3.0).
906
906
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Tue Jun 14 10:21:04 2016 by
119
+ Generated on Thu Aug 18 15:49:46 2016 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
121
  0.8.7.6 (ruby-2.3.0).
122
122
  </div>
@@ -380,7 +380,7 @@
380
380
  </div>
381
381
 
382
382
  <div id="footer">
383
- Generated on Tue Jun 14 10:21:04 2016 by
383
+ Generated on Thu Aug 18 15:49:46 2016 by
384
384
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
385
385
  0.8.7.6 (ruby-2.3.0).
386
386
  </div>
@@ -443,7 +443,7 @@
443
443
  </div>
444
444
 
445
445
  <div id="footer">
446
- Generated on Tue Jun 14 10:21:04 2016 by
446
+ Generated on Thu Aug 18 15:49:46 2016 by
447
447
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
448
448
  0.8.7.6 (ruby-2.3.0).
449
449
  </div>
@@ -338,7 +338,7 @@
338
338
  </div>
339
339
 
340
340
  <div id="footer">
341
- Generated on Tue Jun 14 10:21:04 2016 by
341
+ Generated on Thu Aug 18 15:49:46 2016 by
342
342
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
343
343
  0.8.7.6 (ruby-2.3.0).
344
344
  </div>
@@ -1423,7 +1423,7 @@ To update the list: http:jecas.cz/tld-list/</p>
1423
1423
  </div>
1424
1424
 
1425
1425
  <div id="footer">
1426
- Generated on Tue Jun 14 10:21:04 2016 by
1426
+ Generated on Thu Aug 18 15:49:46 2016 by
1427
1427
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1428
1428
  0.8.7.6 (ruby-2.3.0).
1429
1429
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Tue Jun 14 10:21:04 2016 by
119
+ Generated on Thu Aug 18 15:49:46 2016 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
121
  0.8.7.6 (ruby-2.3.0).
122
122
  </div>
@@ -269,7 +269,7 @@
269
269
  </div>
270
270
 
271
271
  <div id="footer">
272
- Generated on Tue Jun 14 10:21:04 2016 by
272
+ Generated on Thu Aug 18 15:49:46 2016 by
273
273
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
274
274
  0.8.7.6 (ruby-2.3.0).
275
275
  </div>
@@ -485,7 +485,7 @@
485
485
  </div>
486
486
 
487
487
  <div id="footer">
488
- Generated on Tue Jun 14 10:21:04 2016 by
488
+ Generated on Thu Aug 18 15:49:46 2016 by
489
489
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
490
490
  0.8.7.6 (ruby-2.3.0).
491
491
  </div>
@@ -341,7 +341,7 @@
341
341
  </div>
342
342
 
343
343
  <div id="footer">
344
- Generated on Tue Jun 14 10:21:04 2016 by
344
+ Generated on Thu Aug 18 15:49:46 2016 by
345
345
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
346
346
  0.8.7.6 (ruby-2.3.0).
347
347
  </div>
@@ -366,7 +366,7 @@
366
366
  </div>
367
367
 
368
368
  <div id="footer">
369
- Generated on Tue Jun 14 10:21:04 2016 by
369
+ Generated on Thu Aug 18 15:49:46 2016 by
370
370
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
371
371
  0.8.7.6 (ruby-2.3.0).
372
372
  </div>
@@ -363,7 +363,7 @@
363
363
  </div>
364
364
 
365
365
  <div id="footer">
366
- Generated on Tue Jun 14 10:21:04 2016 by
366
+ Generated on Thu Aug 18 15:49:46 2016 by
367
367
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
368
368
  0.8.7.6 (ruby-2.3.0).
369
369
  </div>