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.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/.travis-gemfile +1 -1
- data/.travis.yml +1 -4
- data/.yardopts +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile +1 -1
- data/LICENSE.md +21 -0
- data/README.md +22 -16
- data/Rakefile +1 -1
- data/apes.gemspec +1 -1
- data/{doc → docs}/Apes.html +1 -1
- data/{doc → docs}/Apes/Concerns.html +1 -1
- data/{doc → docs}/Apes/Concerns/Errors.html +1 -1
- data/{doc → docs}/Apes/Concerns/Pagination.html +1 -1
- data/{doc → docs}/Apes/Concerns/Request.html +1 -1
- data/{doc → docs}/Apes/Concerns/Response.html +1 -1
- data/{doc → docs}/Apes/Controller.html +1 -1
- data/{doc → docs}/Apes/Errors.html +1 -1
- data/{doc → docs}/Apes/Errors/AuthenticationError.html +1 -1
- data/{doc → docs}/Apes/Errors/BadRequestError.html +1 -1
- data/{doc → docs}/Apes/Errors/BaseError.html +1 -1
- data/{doc → docs}/Apes/Errors/InvalidDataError.html +1 -1
- data/{doc → docs}/Apes/Errors/MissingDataError.html +1 -1
- data/{doc → docs}/Apes/Model.html +1 -1
- data/{doc → docs}/Apes/PaginationCursor.html +1 -1
- data/{doc → docs}/Apes/RuntimeConfiguration.html +1 -1
- data/{doc → docs}/Apes/Serializers.html +1 -1
- data/{doc → docs}/Apes/Serializers/JSON.html +1 -1
- data/{doc → docs}/Apes/Serializers/JWT.html +1 -1
- data/{doc → docs}/Apes/Serializers/List.html +1 -1
- data/{doc → docs}/Apes/UrlsParser.html +1 -1
- data/{doc → docs}/Apes/Validators.html +1 -1
- data/{doc → docs}/Apes/Validators/BaseValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/BooleanValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/EmailValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/PhoneValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/ReferenceValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/TimestampValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/UuidValidator.html +1 -1
- data/{doc → docs}/Apes/Validators/ZipCodeValidator.html +1 -1
- data/{doc → docs}/Apes/Version.html +1 -1
- data/{doc → docs}/_index.html +1 -1
- data/{doc → docs}/class_list.html +0 -0
- data/{doc → docs}/css/common.css +0 -0
- data/{doc → docs}/css/full_list.css +0 -0
- data/{doc → docs}/css/style.css +0 -0
- data/{doc → docs}/file.README.html +7 -5
- data/{doc → docs}/file_list.html +0 -0
- data/{doc → docs}/frames.html +0 -0
- data/{doc → docs}/index.html +7 -5
- data/{doc → docs}/js/app.js +0 -0
- data/{doc → docs}/js/full_list.js +0 -0
- data/{doc → docs}/js/jquery.js +0 -0
- data/{doc → docs}/method_list.html +0 -0
- data/{doc → docs}/top-level-namespace.html +1 -1
- data/lib/apes.rb +1 -1
- data/lib/apes/concerns/errors.rb +1 -1
- data/lib/apes/concerns/pagination.rb +1 -1
- data/lib/apes/concerns/request.rb +1 -1
- data/lib/apes/concerns/response.rb +1 -1
- data/lib/apes/controller.rb +1 -1
- data/lib/apes/errors.rb +1 -1
- data/lib/apes/model.rb +1 -1
- data/lib/apes/pagination_cursor.rb +1 -1
- data/lib/apes/runtime_configuration.rb +1 -1
- data/lib/apes/serializers.rb +1 -1
- data/lib/apes/urls_parser.rb +1 -1
- data/lib/apes/validators.rb +1 -1
- data/lib/apes/version.rb +2 -2
- data/spec/apes/controller_spec.rb +1 -1
- data/spec/apes/errors_spec.rb +1 -1
- data/spec/apes/models_spec.rb +1 -1
- data/spec/apes/pagination_cursor_spec.rb +1 -1
- data/spec/apes/runtime_configuration_spec.rb +1 -1
- data/spec/apes/serializers_spec.rb +1 -1
- data/spec/apes/urls_parser_spec.rb +1 -1
- data/spec/apes/validators_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +49 -75
- data/doc/ApplicationController.html +0 -547
- data/doc/Concerns.html +0 -128
- data/doc/Concerns/ErrorHandling.html +0 -826
- data/doc/Concerns/PaginationHandling.html +0 -463
- data/doc/Concerns/RequestHandling.html +0 -512
- data/doc/Concerns/ResponseHandling.html +0 -579
- data/doc/Errors.html +0 -126
- data/doc/Errors/AuthenticationError.html +0 -123
- data/doc/Errors/BadRequestError.html +0 -147
- data/doc/Errors/BaseError.html +0 -289
- data/doc/Errors/InvalidDataError.html +0 -147
- data/doc/Errors/MissingDataError.html +0 -147
- data/doc/Model.html +0 -315
- data/doc/PaginationCursor.html +0 -764
- data/doc/Serializers.html +0 -126
- data/doc/Serializers/JSON.html +0 -253
- data/doc/Serializers/JWT.html +0 -253
- data/doc/Serializers/List.html +0 -245
- data/doc/Validators.html +0 -126
- data/doc/Validators/BaseValidator.html +0 -209
- data/doc/Validators/BooleanValidator.html +0 -391
- data/doc/Validators/EmailValidator.html +0 -298
- data/doc/Validators/PhoneValidator.html +0 -313
- data/doc/Validators/ReferenceValidator.html +0 -284
- data/doc/Validators/TimestampValidator.html +0 -476
- data/doc/Validators/UuidValidator.html +0 -310
- data/doc/Validators/ZipCodeValidator.html +0 -310
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e1899be0283d188caf4e5a3dac48e38c0eacbd6
|
|
4
|
+
data.tar.gz: 0fa44609c3c9877863bee1a1c791ba6c52144dae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d668964061552af1590172260a16c075000677c08b7a0f16964d6516feadd0ea7cecc239285f97fce1fd231fa835b9fb10d201f50ce9b90f9a0fa39df8b47a5c
|
|
7
|
+
data.tar.gz: c86f6bf779b39c817ce28f241830a444f7a730e0d89dde9383223567fc8e8214182379ba5982d115b2c2464a1be22f8f6eb828adfef34151dc305a5f13b0c8dc
|
data/.rubocop.yml
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
|
|
3
|
+
# Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
|
|
4
4
|
#
|
|
5
5
|
|
|
6
6
|
AllCops:
|
data/.travis-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
|
|
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"
|
data/.travis.yml
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
|
|
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
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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"
|
data/LICENSE.md
ADDED
|
@@ -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
|
-
[](https://rubygems.org/gems/apes)
|
|
4
|
+
[](https://gemnasium.com/ShogunPanda/apes)
|
|
5
|
+
[](http://travis-ci.org/ShogunPanda/apes)
|
|
6
|
+
[](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
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
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
|
|
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
|
|
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"
|
data/apes.gemspec
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
|
|
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__)
|
data/{doc → docs}/Apes.html
RENAMED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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>
|