api_client 0.5.24-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +72 -0
- data/Gemfile +11 -0
- data/LICENSE +201 -0
- data/Makefile +30 -0
- data/README.md +167 -0
- data/Rakefile +1 -0
- data/lib/api_client.rb +50 -0
- data/spec/spec_helper.rb +13 -0
- metadata +128 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 86de6b224c93faa28969412f7d2121a53a613739959da4d0993b7e3143c2ccb3
|
4
|
+
data.tar.gz: 5e51da700d497e3444e515c166459f4485e180b5705a04af3212750e3d924937
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 511be118de39ceefb8cf983e9798fec9de476f82c78e77e2b8924d97a2740f3e1b9daef81a763678407a08cb158de6a77d8b5ee5fdc9398fa363fbc9cd9a1fba
|
7
|
+
data.tar.gz: bb9d276c8ce9c2442acee7b085801e8e728e5898a668678a37725b6ce747f7bd9a6855c46eb210009fa19b272437970ccbda655fec0ea569e47556478033bf88
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
# 0.5.23
|
2
|
+
|
3
|
+
* Add support for HTTP status code: 423 Locked
|
4
|
+
|
5
|
+
# 0.5.22
|
6
|
+
|
7
|
+
* Add constraint on faraday < 1.0.0 as it breaks compatibility
|
8
|
+
|
9
|
+
# 0.5.21
|
10
|
+
|
11
|
+
* add support for http 410 status code
|
12
|
+
|
13
|
+
# 0.5.20
|
14
|
+
|
15
|
+
* brought back jruby support
|
16
|
+
* updated CI pipeline
|
17
|
+
|
18
|
+
# 0.5.19
|
19
|
+
|
20
|
+
* introduced PATCH requests.
|
21
|
+
* brought back ruby < 2.1 compatibility. Process::CLOCK_MONOTONIC is not present until ruby 2.2. There was a breaking change since 0.5.16.
|
22
|
+
|
23
|
+
# 0.5.18
|
24
|
+
|
25
|
+
* pass along the caller to each `connection` hook
|
26
|
+
|
27
|
+
# 0.5.17
|
28
|
+
* fix a bug where logger on debug level thrown an encoding error #19
|
29
|
+
|
30
|
+
# 0.5.16
|
31
|
+
|
32
|
+
* improve logging, log request details on Logger::DEBUG level
|
33
|
+
|
34
|
+
# 0.5.15
|
35
|
+
|
36
|
+
* add response status code to error message
|
37
|
+
|
38
|
+
# 0.5.14
|
39
|
+
|
40
|
+
* make ApiClient::Base marshallable by not storing proc as instance var
|
41
|
+
|
42
|
+
# 0.5.13
|
43
|
+
|
44
|
+
* add raw_body method to Scope which allows to set non-hash request payload
|
45
|
+
|
46
|
+
# 0.5.12
|
47
|
+
|
48
|
+
* fix threading problem on ruby 1.8.7 and earlier
|
49
|
+
|
50
|
+
# 0.5.11
|
51
|
+
|
52
|
+
* fix handling errors
|
53
|
+
|
54
|
+
# 0.5.10
|
55
|
+
|
56
|
+
* add TooManyRequests error
|
57
|
+
|
58
|
+
# 0.5.9
|
59
|
+
|
60
|
+
* fix compatibility with ruby 1.8.x
|
61
|
+
|
62
|
+
# 0.5.8
|
63
|
+
|
64
|
+
* fix the problem with strict_attr_reader and Array#flatten
|
65
|
+
|
66
|
+
# 0.5.7
|
67
|
+
|
68
|
+
* fix compatibility with hashie 2.1.0 and strict_attr_reader
|
69
|
+
|
70
|
+
# 0.5.6
|
71
|
+
|
72
|
+
* add strict_attr_reader option to raise `KeyError` on missing key access
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright 2011 Zendesk
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/Makefile
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
ENV18=RBENV_VERSION=`rbenv versions --bare | grep "^1\.8" | tail -n 1`
|
2
|
+
ENV19=RBENV_VERSION=`rbenv versions --bare | grep "^1\.9" | tail -n 1`
|
3
|
+
ENV22=RBENV_VERSION=`rbenv versions --bare | grep "^2\.2" | tail -n 1`
|
4
|
+
|
5
|
+
.PHONY: all install_ruby18 ruby18 install_ruby19 ruby19 install_ruby22 ruby22
|
6
|
+
|
7
|
+
all: ruby18 ruby19 ruby22
|
8
|
+
|
9
|
+
install: install_ruby18 install_ruby19 install_ruby22
|
10
|
+
|
11
|
+
install_ruby18:
|
12
|
+
@$(ENV18) bundle
|
13
|
+
|
14
|
+
ruby18:
|
15
|
+
@echo ruby 1.8
|
16
|
+
@$(ENV18) bundle exec rspec
|
17
|
+
|
18
|
+
install_ruby19:
|
19
|
+
@$(ENV19) bundle
|
20
|
+
|
21
|
+
ruby19:
|
22
|
+
@echo ruby 1.9
|
23
|
+
@$(ENV19) bundle exec rspec
|
24
|
+
|
25
|
+
install_ruby22:
|
26
|
+
@$(ENV22) bundle
|
27
|
+
|
28
|
+
ruby22:
|
29
|
+
@echo ruby 2.2
|
30
|
+
@$(ENV22) bundle exec rspec
|
data/README.md
ADDED
@@ -0,0 +1,167 @@
|
|
1
|
+
ApiClient ![Tests](https://github.com/zendesk/api_client/workflows/Tests/badge.svg)
|
2
|
+
=========
|
3
|
+
|
4
|
+
ApiClient is an experimental builder for HTTP API clients. The goal is to provide a easy to use engine for constructing queries and map the responses to instances of Hashie::Mash subclasses.
|
5
|
+
|
6
|
+
Basically you should be able to build a client for any HTTP based API, without the need for handling connections, parsing responses or instantiating objects. All you need to do is choose where the request should go and enhance your client classes. See the examples dir for usage examples.
|
7
|
+
|
8
|
+
Current state is alpha - it works, but the query interface is not final and is subject to change at any time. Hell, even the can even change without prior notice. You were warned.
|
9
|
+
|
10
|
+
## How API Client works
|
11
|
+
|
12
|
+
ApiClient gives you two classes that you can inherit from:
|
13
|
+
|
14
|
+
* ApiClient::Base
|
15
|
+
|
16
|
+
This class gives you the most basic access. It is a Hashie::Mash
|
17
|
+
subclass. On the class level, it exposes a variety of request
|
18
|
+
methods (like get, post, put, delete)
|
19
|
+
|
20
|
+
* ApiClient::Resource::Base
|
21
|
+
|
22
|
+
This class extends ApiClient::Base giving it ActiveRecord-like class methods
|
23
|
+
(find, find_all, create, update, destroy) as well as instance methods
|
24
|
+
(save, destroy).
|
25
|
+
|
26
|
+
## Making requests
|
27
|
+
|
28
|
+
By design, all request methods are singleton methods. They either return Ruby
|
29
|
+
objects or objects of the class they are called on.
|
30
|
+
|
31
|
+
### `ApiClient::Base.get(path, params = {})`
|
32
|
+
|
33
|
+
Make a GET request to a specified path. You can pass params as the second
|
34
|
+
argument. It will parse the representation and return a Ruby object.
|
35
|
+
|
36
|
+
#### Example
|
37
|
+
|
38
|
+
```ruby
|
39
|
+
ApiClient::Base.get('/apples/1.json')
|
40
|
+
# => returns a parsed Hash
|
41
|
+
```
|
42
|
+
|
43
|
+
### `ApiClient::Base.post(path, params = {})`
|
44
|
+
|
45
|
+
Make a POST request to a specified path. You can pass params as the second
|
46
|
+
argument. It will parse the representation and return a Ruby object.
|
47
|
+
|
48
|
+
#### Example
|
49
|
+
|
50
|
+
```ruby
|
51
|
+
ApiClient::Base.post('/apples/1.json', :name => 'Lobo')
|
52
|
+
# => returns a parsed Hash
|
53
|
+
```
|
54
|
+
|
55
|
+
### `ApiClient::Base.put(path, params = {})`
|
56
|
+
|
57
|
+
Make a PUT request to a specified path. You can pass params as the second
|
58
|
+
argument. It will parse the representation and return a Ruby object.
|
59
|
+
|
60
|
+
#### Example
|
61
|
+
|
62
|
+
```ruby
|
63
|
+
ApiClient::Base.put('/apples/1.json', :name => 'Lobo')
|
64
|
+
# => returns a parsed Hash
|
65
|
+
```
|
66
|
+
|
67
|
+
### `ApiClient::Base.delete(path, params = {})`
|
68
|
+
|
69
|
+
Make a DELETE request to a specified path. You can pass params as the second
|
70
|
+
argument. It will parse the representation and return a Ruby object.
|
71
|
+
|
72
|
+
#### Example
|
73
|
+
|
74
|
+
```ruby
|
75
|
+
ApiClient::Base.delete('/apples/1.json')
|
76
|
+
# => returns a parsed Hash
|
77
|
+
```
|
78
|
+
|
79
|
+
### `ApiClient::Base.fetch(path, params = {})`
|
80
|
+
|
81
|
+
Make a GET request to a specified path. You can pass params as the second
|
82
|
+
argument. It will parse the representation, pass it to the build method and
|
83
|
+
return and object of the class it was called on.
|
84
|
+
|
85
|
+
#### Example
|
86
|
+
|
87
|
+
```ruby
|
88
|
+
ApiClient::Base.fetch('/apples/1.json')
|
89
|
+
# => returns a ApiClient::Base object
|
90
|
+
|
91
|
+
class Apple < ApiClient::Base
|
92
|
+
end
|
93
|
+
|
94
|
+
Apple.fetch('/apples/1.json')
|
95
|
+
# => returns an Apple object
|
96
|
+
```
|
97
|
+
|
98
|
+
## Scoping and Chaining
|
99
|
+
|
100
|
+
ApiClient allows you to apply scoping to your request using 3 methods:
|
101
|
+
|
102
|
+
* ApiClient::Base.params(pars = {})
|
103
|
+
|
104
|
+
This method allows you to add parameters to a request. If the request is a
|
105
|
+
GET request, it will be added in the query. Otherwise, it will be sent in
|
106
|
+
the request body.
|
107
|
+
|
108
|
+
It returns a ApiClient::Scope object attached to a class you started with.
|
109
|
+
|
110
|
+
* ApiClient::Base.options(opts = {})
|
111
|
+
|
112
|
+
Allows passing options to the connection object behind the ApiClient. Useful
|
113
|
+
when working with OAuth for passing the token.
|
114
|
+
|
115
|
+
It returns a ApiClient::Scope object attached to a class you started with.
|
116
|
+
|
117
|
+
* ApiClient::Base.headers(heads = {})
|
118
|
+
|
119
|
+
Allows setting headers in the request. Useful when you need to add a token
|
120
|
+
as the header
|
121
|
+
|
122
|
+
It returns a ApiClient::Scope object attached to a class you started with.
|
123
|
+
|
124
|
+
* ApiClient::Base.raw_body(body = nil)
|
125
|
+
|
126
|
+
Allows setting non-hash body in the request. Useful for binary payloads.
|
127
|
+
Notice: it overrides all parameters set via params method!
|
128
|
+
|
129
|
+
It returns a ApiClient::Scope object attached to a class you started with.
|
130
|
+
|
131
|
+
All of these methods return a ApiClient::Scope object. When you call any request
|
132
|
+
methods on this object (get, post, put, delete), the request will apply the
|
133
|
+
options, params and headers.
|
134
|
+
|
135
|
+
### Examples
|
136
|
+
|
137
|
+
#### Params, headers and a GET request
|
138
|
+
|
139
|
+
```ruby
|
140
|
+
ApiClient::Base.
|
141
|
+
params({ :page => 1 }).
|
142
|
+
headers('Auth-Token', 'mytoken').
|
143
|
+
get('/stuff.json') # => returns a parsed Array object
|
144
|
+
```
|
145
|
+
|
146
|
+
## Logging
|
147
|
+
|
148
|
+
To log requests set the `ApiClient.logger`. To log request payloads and headers set level to `Logger::DEBUG`
|
149
|
+
|
150
|
+
```ruby
|
151
|
+
require 'logger'
|
152
|
+
ApiClient.logger = Logger.new('api_client.log')
|
153
|
+
ApiClient.logger.level = Logger::INFO
|
154
|
+
|
155
|
+
```
|
156
|
+
|
157
|
+
## Releasing new version of gem
|
158
|
+
|
159
|
+
1. Update version in [lib/api_client/version.rb](lib/api_client/version.rb) and push to `master`
|
160
|
+
2. Create new GitHub release with tag name starting with `v` and the version, for example `v1.0.0`
|
161
|
+
3. Gem will be automatically built and pushed to rubygems.org with GitHub Action
|
162
|
+
|
163
|
+
## Copyright and license
|
164
|
+
|
165
|
+
Copyright 2011 Zendesk
|
166
|
+
|
167
|
+
Licensed under the [Apache License, Version 2.0](LICENSE)
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/lib/api_client.rb
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
require "api_client/version"
|
2
|
+
require "faraday"
|
3
|
+
require "hashie"
|
4
|
+
require "multi_json"
|
5
|
+
|
6
|
+
module ApiClient
|
7
|
+
class << self
|
8
|
+
attr_accessor :logger
|
9
|
+
end
|
10
|
+
|
11
|
+
module Mixins
|
12
|
+
require "api_client/mixins/connection_hooks"
|
13
|
+
require "api_client/mixins/delegation"
|
14
|
+
require "api_client/mixins/configuration"
|
15
|
+
require "api_client/mixins/inheritance"
|
16
|
+
require "api_client/mixins/instantiation"
|
17
|
+
require "api_client/mixins/scoping"
|
18
|
+
end
|
19
|
+
|
20
|
+
require "api_client/base"
|
21
|
+
require "api_client/errors"
|
22
|
+
require "api_client/scope"
|
23
|
+
require "api_client/utils"
|
24
|
+
|
25
|
+
module Resource
|
26
|
+
require "api_client/resource/base"
|
27
|
+
require "api_client/resource/scope"
|
28
|
+
require "api_client/resource/name_resolver"
|
29
|
+
end
|
30
|
+
|
31
|
+
module Connection
|
32
|
+
class << self
|
33
|
+
attr_accessor :default
|
34
|
+
end
|
35
|
+
self.default = :basic
|
36
|
+
|
37
|
+
module Middlewares
|
38
|
+
module Request
|
39
|
+
require "api_client/connection/middlewares/request/oauth"
|
40
|
+
require "api_client/connection/middlewares/request/logger"
|
41
|
+
require "api_client/connection/middlewares/request/json"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
require "api_client/connection/abstract"
|
46
|
+
require "api_client/connection/basic"
|
47
|
+
require "api_client/connection/json"
|
48
|
+
require "api_client/connection/oauth"
|
49
|
+
end
|
50
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require "rubygems"
|
2
|
+
require "bundler/setup"
|
3
|
+
$:.push File.expand_path("../../lib", __FILE__)
|
4
|
+
require "rspec"
|
5
|
+
|
6
|
+
require 'simplecov'
|
7
|
+
SimpleCov.start do
|
8
|
+
add_filter '/spec'
|
9
|
+
end
|
10
|
+
|
11
|
+
require "api_client"
|
12
|
+
|
13
|
+
Dir.glob("#{File.dirname(__FILE__)}/support/*.rb").each { |f| require f }
|
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: api_client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.24
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- Zendesk
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - '='
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: 2.14.1
|
19
|
+
name: rspec
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.14.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
name: jrjackson
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.0.5
|
47
|
+
name: hashie
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.0.5
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 0.8.1
|
61
|
+
- - "<"
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 1.0.0
|
64
|
+
name: faraday
|
65
|
+
type: :runtime
|
66
|
+
prerelease: false
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 0.8.1
|
72
|
+
- - "<"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 1.0.0
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 1.6.1
|
81
|
+
name: multi_json
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 1.6.1
|
89
|
+
description: API client builder
|
90
|
+
email:
|
91
|
+
- opensource@zendesk.com
|
92
|
+
executables: []
|
93
|
+
extensions: []
|
94
|
+
extra_rdoc_files: []
|
95
|
+
files:
|
96
|
+
- CHANGELOG.md
|
97
|
+
- Gemfile
|
98
|
+
- LICENSE
|
99
|
+
- Makefile
|
100
|
+
- README.md
|
101
|
+
- Rakefile
|
102
|
+
- lib/api_client.rb
|
103
|
+
- spec/spec_helper.rb
|
104
|
+
homepage: https://github.com/futuresimple/api_client
|
105
|
+
licenses:
|
106
|
+
- Apache License Version 2.0
|
107
|
+
metadata: {}
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 2.2.0
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubygems_version: 3.0.6
|
124
|
+
signing_key:
|
125
|
+
specification_version: 3
|
126
|
+
summary: API client builder
|
127
|
+
test_files:
|
128
|
+
- spec/spec_helper.rb
|