toke 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 281ff314c6511cbb27781fa356002af02717c842
4
+ data.tar.gz: d8ebc9bd4a38134c121a357876dd13d5685934f6
5
+ SHA512:
6
+ metadata.gz: acb6086480e2f1aabb853e0464d6accdb16f51336a468cb57f155405decfe291b883c7cd099ee24635f61223659ab21373709c903d350b271b1223f6b880d9ca
7
+ data.tar.gz: 2bc737a73d5d49df8901ebdf22600d54f79fe3988c9c23866ca0554db884bdab585d2623738f0bc0abacab755cea4f34e91501c540c1a676fb5eb3d2b21b32a9
@@ -0,0 +1,95 @@
1
+ Toke
2
+ ====
3
+
4
+ Retrieve OAuth tokens.
5
+
6
+
7
+ Setup
8
+ -----
9
+
10
+ $ bundle install
11
+
12
+
13
+ Run Specs
14
+ ---------
15
+
16
+ $ bundle exec rake
17
+
18
+
19
+ ### Regenerating VCR Cassettes
20
+
21
+ In order to regenerate vcr cassettes, the following items must be provided:
22
+
23
+ * client id
24
+ * client secret
25
+ * refresh token
26
+
27
+ Follow the instructions [here][atv-wiki-google-api-key] to find these values.
28
+
29
+ Place them in a file named `.env` in the root of the project
30
+
31
+ The `.env` contents should look something like this:
32
+
33
+ ```
34
+ REFRESH_TOKEN= [refresh token]
35
+ CLIENT_ID= [client id]
36
+ CLIENT_SECRET= [client secret]
37
+ ```
38
+
39
+
40
+ Interface
41
+ ---------
42
+
43
+ All public endpoints are exposed in Toke::Core.
44
+
45
+ Every response from the public API is wrapped in a `Response` object
46
+ that will always have the same interface regardless of request.
47
+ The `Response#data` attribute will be an object specific to the data requested.
48
+
49
+
50
+ ### retrieve_token
51
+
52
+ retrieve_token returns a response object,
53
+ which will contain an access token in its data attribute.
54
+ The access token has a `token` property that is the string token value.
55
+
56
+ A rudimentary implementation is given below as an example:
57
+
58
+ ```
59
+ def access_token
60
+ @access_token = nil if !defined?(@access_token)
61
+
62
+ if !@access_token || @access_token.expired?
63
+ params = {
64
+ :client_id => client_id,
65
+ :client_secret => client_secret,
66
+ :refresh_token => refresh_token,
67
+ }
68
+
69
+ response = Toke.retrieve_token(params)
70
+ @access_token = response.data if response.success?
71
+ end
72
+
73
+ @access_token && @access_token.token
74
+ end
75
+ ```
76
+
77
+
78
+ Factories
79
+ ---------
80
+
81
+ Toke includes FactoryGirl factories for your convenience.
82
+ Include them after requiring FactoryGirl:
83
+
84
+ require 'toke/factories'
85
+
86
+
87
+ Deployment
88
+ ----------
89
+
90
+ This project makes use of branches to manage deployment.
91
+ Pushing a new commit to the `production` branch
92
+ will also build and push this gem to RubyGems.
93
+
94
+
95
+ [atv-wiki-google-api-key]: https://www.github.com/awesomenesstv/wiki#google-api-key
@@ -0,0 +1,13 @@
1
+ require 'reverb'
2
+ require 'faraday'
3
+
4
+ require File.expand_path('../toke/core', __FILE__)
5
+ require File.expand_path('../toke/models/access_token', __FILE__)
6
+ require File.expand_path('../toke/params/get_access_token_params', __FILE__)
7
+ require File.expand_path('../toke/responses/access_token_response', __FILE__)
8
+ require File.expand_path('../toke/commands/base_command', __FILE__)
9
+ require File.expand_path('../toke/commands/get_access_token_command', __FILE__)
10
+
11
+ module Toke
12
+ extend Core
13
+ end
@@ -0,0 +1,29 @@
1
+ module Toke
2
+ module BaseCommand
3
+ extend self
4
+
5
+ private
6
+
7
+ def connection
8
+ Faraday.new(:url => base_url)
9
+ end
10
+
11
+ def post(params)
12
+ connection.post url(params), nil, headers
13
+ end
14
+
15
+ def headers
16
+ {
17
+ 'Content-Type' => 'application/json',
18
+ }
19
+ end
20
+
21
+ def base_url
22
+ 'https://www.googleapis.com/oauth2/v3'
23
+ end
24
+
25
+ def url(params)
26
+ connection.build_url endpoint, url_params(params)
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,29 @@
1
+ module Toke
2
+ module GetAccessTokenCommand
3
+ extend BaseCommand
4
+ extend self
5
+
6
+ def execute(params)
7
+ params = GetAccessTokenParams.new(params)
8
+
9
+ if params.valid?
10
+ AccessTokenResponse.new post(params)
11
+ else
12
+ AccessTokenResponse.new
13
+ end
14
+ end
15
+
16
+ def url_params(params)
17
+ {
18
+ :client_id => params.client_id,
19
+ :client_secret => params.client_secret,
20
+ :refresh_token => params.refresh_token,
21
+ :grant_type => 'refresh_token',
22
+ }
23
+ end
24
+
25
+ def endpoint
26
+ 'token'
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,7 @@
1
+ module Toke
2
+ module Core
3
+ def retrieve_token(params)
4
+ GetAccessTokenCommand.execute params
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,2 @@
1
+ require File.expand_path('../factories/sequences', __FILE__)
2
+ require File.expand_path('../factories/access_token', __FILE__)
@@ -0,0 +1,13 @@
1
+ FactoryGirl.define do
2
+ factory :toke_access_token, :class => Toke::AccessToken do
3
+ token { FactoryGirl.generate :toke_token }
4
+ expires 3600
5
+
6
+ factory :toke_expired_access_token do
7
+ after(:build) do |access_token, evaluator|
8
+ created_at = Time.now - access_token.expires - 2
9
+ access_token.instance_variable_set :@created_at, created_at
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ FactoryGirl.define do
2
+ sequence(:toke_token) { |n| "access-token-#{n}" }
3
+ end
@@ -0,0 +1,15 @@
1
+ module Toke
2
+ class AccessToken
3
+ attr_accessor :token, :expires
4
+
5
+ def initialize(hash = {})
6
+ @token = hash['access_token']
7
+ @expires = hash['expires_in']
8
+ @created_at = Time.now
9
+ end
10
+
11
+ def expired?
12
+ Time.now > @created_at + expires - 1
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,25 @@
1
+ module Toke
2
+ class GetAccessTokenParams
3
+ attr_reader :client_id, :client_secret, :refresh_token
4
+
5
+ def initialize(params)
6
+ @params = params
7
+
8
+ @client_id = normalize(:client_id)
9
+ @client_secret = normalize(:client_secret)
10
+ @refresh_token = normalize(:refresh_token)
11
+ end
12
+
13
+ def valid?
14
+ !!(client_id && client_secret && refresh_token)
15
+ end
16
+
17
+ private
18
+
19
+ def normalize(key)
20
+ value = @params[key] || @params[key.to_s]
21
+ value = nil if value && value.strip == ''
22
+ value
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,7 @@
1
+ module Toke
2
+ class AccessTokenResponse < ::Reverb::Response
3
+ def on_success
4
+ self.data = AccessToken.new(body)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,650 @@
1
+ Preamble
2
+ ==================================================
3
+
4
+ The GNU General Public License is a free, copyleft license for
5
+ software and other kinds of works.
6
+
7
+ The licenses for most software and other practical works are designed
8
+ to take away your freedom to share and change the works. By contrast,
9
+ the GNU General Public License is intended to guarantee your freedom to
10
+ share and change all versions of a program--to make sure it remains free
11
+ software for all its users. We, the Free Software Foundation, use the
12
+ GNU General Public License for most of our software; it applies also to
13
+ any other work released this way by its authors. You can apply it to
14
+ your programs, too.
15
+
16
+ When we speak of free software, we are referring to freedom, not
17
+ price. Our General Public Licenses are designed to make sure that you
18
+ have the freedom to distribute copies of free software (and charge for
19
+ them if you wish), that you receive source code or can get it if you
20
+ want it, that you can change the software or use pieces of it in new
21
+ free programs, and that you know you can do these things.
22
+
23
+ To protect your rights, we need to prevent others from denying you
24
+ these rights or asking you to surrender the rights. Therefore, you have
25
+ certain responsibilities if you distribute copies of the software, or if
26
+ you modify it: responsibilities to respect the freedom of others.
27
+
28
+ For example, if you distribute copies of such a program, whether
29
+ gratis or for a fee, you must pass on to the recipients the same
30
+ freedoms that you received. You must make sure that they, too, receive
31
+ or can get the source code. And you must show them these terms so they
32
+ know their rights.
33
+
34
+ Developers that use the GNU GPL protect your rights with two steps:
35
+ (1) assert copyright on the software, and (2) offer you this License
36
+ giving you legal permission to copy, distribute and/or modify it.
37
+
38
+ For the developers' and authors' protection, the GPL clearly explains
39
+ that there is no warranty for this free software. For both users' and
40
+ authors' sake, the GPL requires that modified versions be marked as
41
+ changed, so that their problems will not be attributed erroneously to
42
+ authors of previous versions.
43
+
44
+ Some devices are designed to deny users access to install or run
45
+ modified versions of the software inside them, although the manufacturer
46
+ can do so. This is fundamentally incompatible with the aim of
47
+ protecting users' freedom to change the software. The systematic
48
+ pattern of such abuse occurs in the area of products for individuals to
49
+ use, which is precisely where it is most unacceptable. Therefore, we
50
+ have designed this version of the GPL to prohibit the practice for those
51
+ products. If such problems arise substantially in other domains, we
52
+ stand ready to extend this provision to those domains in future versions
53
+ of the GPL, as needed to protect the freedom of users.
54
+
55
+ Finally, every program is threatened constantly by software patents.
56
+ States should not allow patents to restrict development and use of
57
+ software on general-purpose computers, but in those that do, we wish to
58
+ avoid the special danger that patents applied to a free program could
59
+ make it effectively proprietary. To prevent this, the GPL assures that
60
+ patents cannot be used to render the program non-free.
61
+
62
+ The precise terms and conditions for copying, distribution and
63
+ modification follow.
64
+
65
+
66
+ TERMS AND CONDITIONS
67
+ ==================================================
68
+
69
+ 0. Definitions.
70
+ --------------------------------------------------
71
+
72
+ "This License" refers to version 3 of the GNU General Public License.
73
+
74
+ "Copyright" also means copyright-like laws that apply to other kinds of
75
+ works, such as semiconductor masks.
76
+
77
+ "The Program" refers to any copyrightable work licensed under this
78
+ License. Each licensee is addressed as "you". "Licensees" and
79
+ "recipients" may be individuals or organizations.
80
+
81
+ To "modify" a work means to copy from or adapt all or part of the work
82
+ in a fashion requiring copyright permission, other than the making of an
83
+ exact copy. The resulting work is called a "modified version" of the
84
+ earlier work or a work "based on" the earlier work.
85
+
86
+ A "covered work" means either the unmodified Program or a work based
87
+ on the Program.
88
+
89
+ To "propagate" a work means to do anything with it that, without
90
+ permission, would make you directly or secondarily liable for
91
+ infringement under applicable copyright law, except executing it on a
92
+ computer or modifying a private copy. Propagation includes copying,
93
+ distribution (with or without modification), making available to the
94
+ public, and in some countries other activities as well.
95
+
96
+ To "convey" a work means any kind of propagation that enables other
97
+ parties to make or receive copies. Mere interaction with a user through
98
+ a computer network, with no transfer of a copy, is not conveying.
99
+
100
+ An interactive user interface displays "Appropriate Legal Notices"
101
+ to the extent that it includes a convenient and prominently visible
102
+ feature that (1) displays an appropriate copyright notice, and (2)
103
+ tells the user that there is no warranty for the work (except to the
104
+ extent that warranties are provided), that licensees may convey the
105
+ work under this License, and how to view a copy of this License. If
106
+ the interface presents a list of user commands or options, such as a
107
+ menu, a prominent item in the list meets this criterion.
108
+
109
+
110
+ 1. Source Code.
111
+ --------------------------------------------------
112
+
113
+ The "source code" for a work means the preferred form of the work
114
+ for making modifications to it. "Object code" means any non-source
115
+ form of a work.
116
+
117
+ A "Standard Interface" means an interface that either is an official
118
+ standard defined by a recognized standards body, or, in the case of
119
+ interfaces specified for a particular programming language, one that
120
+ is widely used among developers working in that language.
121
+
122
+ The "System Libraries" of an executable work include anything, other
123
+ than the work as a whole, that (a) is included in the normal form of
124
+ packaging a Major Component, but which is not part of that Major
125
+ Component, and (b) serves only to enable use of the work with that
126
+ Major Component, or to implement a Standard Interface for which an
127
+ implementation is available to the public in source code form. A
128
+ "Major Component", in this context, means a major essential component
129
+ (kernel, window system, and so on) of the specific operating system
130
+ (if any) on which the executable work runs, or a compiler used to
131
+ produce the work, or an object code interpreter used to run it.
132
+
133
+ The "Corresponding Source" for a work in object code form means all
134
+ the source code needed to generate, install, and (for an executable
135
+ work) run the object code and to modify the work, including scripts to
136
+ control those activities. However, it does not include the work's
137
+ System Libraries, or general-purpose tools or generally available free
138
+ programs which are used unmodified in performing those activities but
139
+ which are not part of the work. For example, Corresponding Source
140
+ includes interface definition files associated with source files for
141
+ the work, and the source code for shared libraries and dynamically
142
+ linked subprograms that the work is specifically designed to require,
143
+ such as by intimate data communication or control flow between those
144
+ subprograms and other parts of the work.
145
+
146
+ The Corresponding Source need not include anything that users
147
+ can regenerate automatically from other parts of the Corresponding
148
+ Source.
149
+
150
+ The Corresponding Source for a work in source code form is that
151
+ same work.
152
+
153
+
154
+ 2. Basic Permissions.
155
+ --------------------------------------------------
156
+
157
+ All rights granted under this License are granted for the term of
158
+ copyright on the Program, and are irrevocable provided the stated
159
+ conditions are met. This License explicitly affirms your unlimited
160
+ permission to run the unmodified Program. The output from running a
161
+ covered work is covered by this License only if the output, given its
162
+ content, constitutes a covered work. This License acknowledges your
163
+ rights of fair use or other equivalent, as provided by copyright law.
164
+
165
+ You may make, run and propagate covered works that you do not
166
+ convey, without conditions so long as your license otherwise remains
167
+ in force. You may convey covered works to others for the sole purpose
168
+ of having them make modifications exclusively for you, or provide you
169
+ with facilities for running those works, provided that you comply with
170
+ the terms of this License in conveying all material for which you do
171
+ not control copyright. Those thus making or running the covered works
172
+ for you must do so exclusively on your behalf, under your direction
173
+ and control, on terms that prohibit them from making any copies of
174
+ your copyrighted material outside their relationship with you.
175
+
176
+ Conveying under any other circumstances is permitted solely under
177
+ the conditions stated below. Sublicensing is not allowed; section 10
178
+ makes it unnecessary.
179
+
180
+
181
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
182
+ --------------------------------------------------
183
+
184
+ No covered work shall be deemed part of an effective technological
185
+ measure under any applicable law fulfilling obligations under article
186
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
187
+ similar laws prohibiting or restricting circumvention of such
188
+ measures.
189
+
190
+ When you convey a covered work, you waive any legal power to forbid
191
+ circumvention of technological measures to the extent such circumvention
192
+ is effected by exercising rights under this License with respect to
193
+ the covered work, and you disclaim any intention to limit operation or
194
+ modification of the work as a means of enforcing, against the work's
195
+ users, your or third parties' legal rights to forbid circumvention of
196
+ technological measures.
197
+
198
+
199
+ 4. Conveying Verbatim Copies.
200
+ --------------------------------------------------
201
+
202
+ You may convey verbatim copies of the Program's source code as you
203
+ receive it, in any medium, provided that you conspicuously and
204
+ appropriately publish on each copy an appropriate copyright notice;
205
+ keep intact all notices stating that this License and any
206
+ non-permissive terms added in accord with section 7 apply to the code;
207
+ keep intact all notices of the absence of any warranty; and give all
208
+ recipients a copy of this License along with the Program.
209
+
210
+ You may charge any price or no price for each copy that you convey,
211
+ and you may offer support or warranty protection for a fee.
212
+
213
+
214
+ 5. Conveying Modified Source Versions.
215
+ --------------------------------------------------
216
+
217
+ You may convey a work based on the Program, or the modifications to
218
+ produce it from the Program, in the form of source code under the
219
+ terms of section 4, provided that you also meet all of these conditions:
220
+
221
+ * a) The work must carry prominent notices stating that you modified
222
+ it, and giving a relevant date.
223
+
224
+ * b) The work must carry prominent notices stating that it is
225
+ released under this License and any conditions added under section
226
+ 7. This requirement modifies the requirement in section 4 to
227
+ "keep intact all notices".
228
+
229
+ * c) You must license the entire work, as a whole, under this
230
+ License to anyone who comes into possession of a copy. This
231
+ License will therefore apply, along with any applicable section 7
232
+ additional terms, to the whole of the work, and all its parts,
233
+ regardless of how they are packaged. This License gives no
234
+ permission to license the work in any other way, but it does not
235
+ invalidate such permission if you have separately received it.
236
+
237
+ * d) If the work has interactive user interfaces, each must display
238
+ Appropriate Legal Notices; however, if the Program has interactive
239
+ interfaces that do not display Appropriate Legal Notices, your
240
+ work need not make them do so.
241
+
242
+ A compilation of a covered work with other separate and independent
243
+ works, which are not by their nature extensions of the covered work,
244
+ and which are not combined with it such as to form a larger program,
245
+ in or on a volume of a storage or distribution medium, is called an
246
+ "aggregate" if the compilation and its resulting copyright are not
247
+ used to limit the access or legal rights of the compilation's users
248
+ beyond what the individual works permit. Inclusion of a covered work
249
+ in an aggregate does not cause this License to apply to the other
250
+ parts of the aggregate.
251
+
252
+
253
+ 6. Conveying Non-Source Forms.
254
+ --------------------------------------------------
255
+
256
+ You may convey a covered work in object code form under the terms
257
+ of sections 4 and 5, provided that you also convey the
258
+ machine-readable Corresponding Source under the terms of this License,
259
+ in one of these ways:
260
+
261
+ * a) Convey the object code in, or embodied in, a physical product
262
+ (including a physical distribution medium), accompanied by the
263
+ Corresponding Source fixed on a durable physical medium
264
+ customarily used for software interchange.
265
+
266
+ * b) Convey the object code in, or embodied in, a physical product
267
+ (including a physical distribution medium), accompanied by a
268
+ written offer, valid for at least three years and valid for as
269
+ long as you offer spare parts or customer support for that product
270
+ model, to give anyone who possesses the object code either (1) a
271
+ copy of the Corresponding Source for all the software in the
272
+ product that is covered by this License, on a durable physical
273
+ medium customarily used for software interchange, for a price no
274
+ more than your reasonable cost of physically performing this
275
+ conveying of source, or (2) access to copy the
276
+ Corresponding Source from a network server at no charge.
277
+
278
+ * c) Convey individual copies of the object code with a copy of the
279
+ written offer to provide the Corresponding Source. This
280
+ alternative is allowed only occasionally and noncommercially, and
281
+ only if you received the object code with such an offer, in accord
282
+ with subsection 6b.
283
+
284
+ * d) Convey the object code by offering access from a designated
285
+ place (gratis or for a charge), and offer equivalent access to the
286
+ Corresponding Source in the same way through the same place at no
287
+ further charge. You need not require recipients to copy the
288
+ Corresponding Source along with the object code. If the place to
289
+ copy the object code is a network server, the Corresponding Source
290
+ may be on a different server (operated by you or a third party)
291
+ that supports equivalent copying facilities, provided you maintain
292
+ clear directions next to the object code saying where to find the
293
+ Corresponding Source. Regardless of what server hosts the
294
+ Corresponding Source, you remain obligated to ensure that it is
295
+ available for as long as needed to satisfy these requirements.
296
+
297
+ * e) Convey the object code using peer-to-peer transmission, provided
298
+ you inform other peers where the object code and Corresponding
299
+ Source of the work are being offered to the general public at no
300
+ charge under subsection 6d.
301
+
302
+ A separable portion of the object code, whose source code is excluded
303
+ from the Corresponding Source as a System Library, need not be
304
+ included in conveying the object code work.
305
+
306
+ A "User Product" is either (1) a "consumer product", which means any
307
+ tangible personal property which is normally used for personal, family,
308
+ or household purposes, or (2) anything designed or sold for incorporation
309
+ into a dwelling. In determining whether a product is a consumer product,
310
+ doubtful cases shall be resolved in favor of coverage. For a particular
311
+ product received by a particular user, "normally used" refers to a
312
+ typical or common use of that class of product, regardless of the status
313
+ of the particular user or of the way in which the particular user
314
+ actually uses, or expects or is expected to use, the product. A product
315
+ is a consumer product regardless of whether the product has substantial
316
+ commercial, industrial or non-consumer uses, unless such uses represent
317
+ the only significant mode of use of the product.
318
+
319
+ "Installation Information" for a User Product means any methods,
320
+ procedures, authorization keys, or other information required to install
321
+ and execute modified versions of a covered work in that User Product from
322
+ a modified version of its Corresponding Source. The information must
323
+ suffice to ensure that the continued functioning of the modified object
324
+ code is in no case prevented or interfered with solely because
325
+ modification has been made.
326
+
327
+ If you convey an object code work under this section in, or with, or
328
+ specifically for use in, a User Product, and the conveying occurs as
329
+ part of a transaction in which the right of possession and use of the
330
+ User Product is transferred to the recipient in perpetuity or for a
331
+ fixed term (regardless of how the transaction is characterized), the
332
+ Corresponding Source conveyed under this section must be accompanied
333
+ by the Installation Information. But this requirement does not apply
334
+ if neither you nor any third party retains the ability to install
335
+ modified object code on the User Product (for example, the work has
336
+ been installed in ROM).
337
+
338
+ The requirement to provide Installation Information does not include a
339
+ requirement to continue to provide support service, warranty, or updates
340
+ for a work that has been modified or installed by the recipient, or for
341
+ the User Product in which it has been modified or installed. Access to a
342
+ network may be denied when the modification itself materially and
343
+ adversely affects the operation of the network or violates the rules and
344
+ protocols for communication across the network.
345
+
346
+ Corresponding Source conveyed, and Installation Information provided,
347
+ in accord with this section must be in a format that is publicly
348
+ documented (and with an implementation available to the public in
349
+ source code form), and must require no special password or key for
350
+ unpacking, reading or copying.
351
+
352
+
353
+ 7. Additional Terms.
354
+ --------------------------------------------------
355
+
356
+ "Additional permissions" are terms that supplement the terms of this
357
+ License by making exceptions from one or more of its conditions.
358
+ Additional permissions that are applicable to the entire Program shall
359
+ be treated as though they were included in this License, to the extent
360
+ that they are valid under applicable law. If additional permissions
361
+ apply only to part of the Program, that part may be used separately
362
+ under those permissions, but the entire Program remains governed by
363
+ this License without regard to the additional permissions.
364
+
365
+ When you convey a copy of a covered work, you may at your option
366
+ remove any additional permissions from that copy, or from any part of
367
+ it. (Additional permissions may be written to require their own
368
+ removal in certain cases when you modify the work.) You may place
369
+ additional permissions on material, added by you to a covered work,
370
+ for which you have or can give appropriate copyright permission.
371
+
372
+ Notwithstanding any other provision of this License, for material you
373
+ add to a covered work, you may (if authorized by the copyright holders of
374
+ that material) supplement the terms of this License with terms:
375
+
376
+ * a) Disclaiming warranty or limiting liability differently from the
377
+ terms of sections 15 and 16 of this License; or
378
+
379
+ * b) Requiring preservation of specified reasonable legal notices or
380
+ author attributions in that material or in the Appropriate Legal
381
+ Notices displayed by works containing it; or
382
+
383
+ * c) Prohibiting misrepresentation of the origin of that material, or
384
+ requiring that modified versions of such material be marked in
385
+ reasonable ways as different from the original version; or
386
+
387
+ * d) Limiting the use for publicity purposes of names of licensors or
388
+ authors of the material; or
389
+
390
+ * e) Declining to grant rights under trademark law for use of some
391
+ trade names, trademarks, or service marks; or
392
+
393
+ * f) Requiring indemnification of licensors and authors of that
394
+ material by anyone who conveys the material (or modified versions of
395
+ it) with contractual assumptions of liability to the recipient, for
396
+ any liability that these contractual assumptions directly impose on
397
+ those licensors and authors.
398
+
399
+ All other non-permissive additional terms are considered "further
400
+ restrictions" within the meaning of section 10. If the Program as you
401
+ received it, or any part of it, contains a notice stating that it is
402
+ governed by this License along with a term that is a further
403
+ restriction, you may remove that term. If a license document contains
404
+ a further restriction but permits relicensing or conveying under this
405
+ License, you may add to a covered work material governed by the terms
406
+ of that license document, provided that the further restriction does
407
+ not survive such relicensing or conveying.
408
+
409
+ If you add terms to a covered work in accord with this section, you
410
+ must place, in the relevant source files, a statement of the
411
+ additional terms that apply to those files, or a notice indicating
412
+ where to find the applicable terms.
413
+
414
+ Additional terms, permissive or non-permissive, may be stated in the
415
+ form of a separately written license, or stated as exceptions;
416
+ the above requirements apply either way.
417
+
418
+
419
+ 8. Termination.
420
+ --------------------------------------------------
421
+
422
+ You may not propagate or modify a covered work except as expressly
423
+ provided under this License. Any attempt otherwise to propagate or
424
+ modify it is void, and will automatically terminate your rights under
425
+ this License (including any patent licenses granted under the third
426
+ paragraph of section 11).
427
+
428
+ However, if you cease all violation of this License, then your
429
+ license from a particular copyright holder is reinstated (a)
430
+ provisionally, unless and until the copyright holder explicitly and
431
+ finally terminates your license, and (b) permanently, if the copyright
432
+ holder fails to notify you of the violation by some reasonable means
433
+ prior to 60 days after the cessation.
434
+
435
+ Moreover, your license from a particular copyright holder is
436
+ reinstated permanently if the copyright holder notifies you of the
437
+ violation by some reasonable means, this is the first time you have
438
+ received notice of violation of this License (for any work) from that
439
+ copyright holder, and you cure the violation prior to 30 days after
440
+ your receipt of the notice.
441
+
442
+ Termination of your rights under this section does not terminate the
443
+ licenses of parties who have received copies or rights from you under
444
+ this License. If your rights have been terminated and not permanently
445
+ reinstated, you do not qualify to receive new licenses for the same
446
+ material under section 10.
447
+
448
+
449
+ 9. Acceptance Not Required for Having Copies.
450
+ --------------------------------------------------
451
+
452
+ You are not required to accept this License in order to receive or
453
+ run a copy of the Program. Ancillary propagation of a covered work
454
+ occurring solely as a consequence of using peer-to-peer transmission
455
+ to receive a copy likewise does not require acceptance. However,
456
+ nothing other than this License grants you permission to propagate or
457
+ modify any covered work. These actions infringe copyright if you do
458
+ not accept this License. Therefore, by modifying or propagating a
459
+ covered work, you indicate your acceptance of this License to do so.
460
+
461
+
462
+ 10. Automatic Licensing of Downstream Recipients.
463
+ --------------------------------------------------
464
+
465
+ Each time you convey a covered work, the recipient automatically
466
+ receives a license from the original licensors, to run, modify and
467
+ propagate that work, subject to this License. You are not responsible
468
+ for enforcing compliance by third parties with this License.
469
+
470
+ An "entity transaction" is a transaction transferring control of an
471
+ organization, or substantially all assets of one, or subdividing an
472
+ organization, or merging organizations. If propagation of a covered
473
+ work results from an entity transaction, each party to that
474
+ transaction who receives a copy of the work also receives whatever
475
+ licenses to the work the party's predecessor in interest had or could
476
+ give under the previous paragraph, plus a right to possession of the
477
+ Corresponding Source of the work from the predecessor in interest, if
478
+ the predecessor has it or can get it with reasonable efforts.
479
+
480
+ You may not impose any further restrictions on the exercise of the
481
+ rights granted or affirmed under this License. For example, you may
482
+ not impose a license fee, royalty, or other charge for exercise of
483
+ rights granted under this License, and you may not initiate litigation
484
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
485
+ any patent claim is infringed by making, using, selling, offering for
486
+ sale, or importing the Program or any portion of it.
487
+
488
+
489
+ 11. Patents.
490
+ --------------------------------------------------
491
+
492
+ A "contributor" is a copyright holder who authorizes use under this
493
+ License of the Program or a work on which the Program is based. The
494
+ work thus licensed is called the contributor's "contributor version".
495
+
496
+ A contributor's "essential patent claims" are all patent claims
497
+ owned or controlled by the contributor, whether already acquired or
498
+ hereafter acquired, that would be infringed by some manner, permitted
499
+ by this License, of making, using, or selling its contributor version,
500
+ but do not include claims that would be infringed only as a
501
+ consequence of further modification of the contributor version. For
502
+ purposes of this definition, "control" includes the right to grant
503
+ patent sublicenses in a manner consistent with the requirements of
504
+ this License.
505
+
506
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
507
+ patent license under the contributor's essential patent claims, to
508
+ make, use, sell, offer for sale, import and otherwise run, modify and
509
+ propagate the contents of its contributor version.
510
+
511
+ In the following three paragraphs, a "patent license" is any express
512
+ agreement or commitment, however denominated, not to enforce a patent
513
+ (such as an express permission to practice a patent or covenant not to
514
+ sue for patent infringement). To "grant" such a patent license to a
515
+ party means to make such an agreement or commitment not to enforce a
516
+ patent against the party.
517
+
518
+ If you convey a covered work, knowingly relying on a patent license,
519
+ and the Corresponding Source of the work is not available for anyone
520
+ to copy, free of charge and under the terms of this License, through a
521
+ publicly available network server or other readily accessible means,
522
+ then you must either (1) cause the Corresponding Source to be so
523
+ available, or (2) arrange to deprive yourself of the benefit of the
524
+ patent license for this particular work, or (3) arrange, in a manner
525
+ consistent with the requirements of this License, to extend the patent
526
+ license to downstream recipients. "Knowingly relying" means you have
527
+ actual knowledge that, but for the patent license, your conveying the
528
+ covered work in a country, or your recipient's use of the covered work
529
+ in a country, would infringe one or more identifiable patents in that
530
+ country that you have reason to believe are valid.
531
+
532
+ If, pursuant to or in connection with a single transaction or
533
+ arrangement, you convey, or propagate by procuring conveyance of, a
534
+ covered work, and grant a patent license to some of the parties
535
+ receiving the covered work authorizing them to use, propagate, modify
536
+ or convey a specific copy of the covered work, then the patent license
537
+ you grant is automatically extended to all recipients of the covered
538
+ work and works based on it.
539
+
540
+ A patent license is "discriminatory" if it does not include within
541
+ the scope of its coverage, prohibits the exercise of, or is
542
+ conditioned on the non-exercise of one or more of the rights that are
543
+ specifically granted under this License. You may not convey a covered
544
+ work if you are a party to an arrangement with a third party that is
545
+ in the business of distributing software, under which you make payment
546
+ to the third party based on the extent of your activity of conveying
547
+ the work, and under which the third party grants, to any of the
548
+ parties who would receive the covered work from you, a discriminatory
549
+ patent license (a) in connection with copies of the covered work
550
+ conveyed by you (or copies made from those copies), or (b) primarily
551
+ for and in connection with specific products or compilations that
552
+ contain the covered work, unless you entered into that arrangement,
553
+ or that patent license was granted, prior to 28 March 2007.
554
+
555
+ Nothing in this License shall be construed as excluding or limiting
556
+ any implied license or other defenses to infringement that may
557
+ otherwise be available to you under applicable patent law.
558
+
559
+
560
+ 12. No Surrender of Others' Freedom.
561
+ --------------------------------------------------
562
+
563
+ If conditions are imposed on you (whether by court order, agreement or
564
+ otherwise) that contradict the conditions of this License, they do not
565
+ excuse you from the conditions of this License. If you cannot convey a
566
+ covered work so as to satisfy simultaneously your obligations under this
567
+ License and any other pertinent obligations, then as a consequence you may
568
+ not convey it at all. For example, if you agree to terms that obligate you
569
+ to collect a royalty for further conveying from those to whom you convey
570
+ the Program, the only way you could satisfy both those terms and this
571
+ License would be to refrain entirely from conveying the Program.
572
+
573
+
574
+ 13. Use with the GNU Affero General Public License.
575
+ --------------------------------------------------
576
+
577
+ Notwithstanding any other provision of this License, you have
578
+ permission to link or combine any covered work with a work licensed
579
+ under version 3 of the GNU Affero General Public License into a single
580
+ combined work, and to convey the resulting work. The terms of this
581
+ License will continue to apply to the part which is the covered work,
582
+ but the special requirements of the GNU Affero General Public License,
583
+ section 13, concerning interaction through a network will apply to the
584
+ combination as such.
585
+
586
+
587
+ 14. Revised Versions of this License.
588
+ --------------------------------------------------
589
+
590
+ The Free Software Foundation may publish revised and/or new versions of
591
+ the GNU General Public License from time to time. Such new versions will
592
+ be similar in spirit to the present version, but may differ in detail to
593
+ address new problems or concerns.
594
+
595
+ Each version is given a distinguishing version number. If the
596
+ Program specifies that a certain numbered version of the GNU General
597
+ Public License "or any later version" applies to it, you have the
598
+ option of following the terms and conditions either of that numbered
599
+ version or of any later version published by the Free Software
600
+ Foundation. If the Program does not specify a version number of the
601
+ GNU General Public License, you may choose any version ever published
602
+ by the Free Software Foundation.
603
+
604
+ If the Program specifies that a proxy can decide which future
605
+ versions of the GNU General Public License can be used, that proxy's
606
+ public statement of acceptance of a version permanently authorizes you
607
+ to choose that version for the Program.
608
+
609
+ Later license versions may give you additional or different
610
+ permissions. However, no additional obligations are imposed on any
611
+ author or copyright holder as a result of your choosing to follow a
612
+ later version.
613
+
614
+
615
+ 15. Disclaimer of Warranty.
616
+ --------------------------------------------------
617
+
618
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
619
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
620
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
621
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
622
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
623
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
624
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
625
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
626
+
627
+
628
+ 16. Limitation of Liability.
629
+ --------------------------------------------------
630
+
631
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
632
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
633
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
634
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
635
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
636
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
637
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
638
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
639
+ SUCH DAMAGES.
640
+
641
+
642
+ 17. Interpretation of Sections 15 and 16.
643
+ --------------------------------------------------
644
+
645
+ If the disclaimer of warranty and limitation of liability provided
646
+ above cannot be given local legal effect according to their terms,
647
+ reviewing courts shall apply local law that most closely approximates
648
+ an absolute waiver of all civil liability in connection with the
649
+ Program, unless a warranty or assumption of liability accompanies a
650
+ copy of the Program in return for a fee.
@@ -0,0 +1,171 @@
1
+ This version of the GNU Lesser General Public License incorporates
2
+ the terms and conditions of version 3 of the GNU General Public
3
+ License, supplemented by the additional permissions listed below.
4
+
5
+
6
+ 0. Additional Definitions.
7
+ --------------------------
8
+
9
+ As used herein, "this License" refers to version 3 of the GNU Lesser
10
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
11
+ General Public License.
12
+
13
+ "The Library" refers to a covered work governed by this License,
14
+ other than an Application or a Combined Work as defined below.
15
+
16
+ An "Application" is any work that makes use of an interface provided
17
+ by the Library, but which is not otherwise based on the Library.
18
+ Defining a subclass of a class defined by the Library is deemed a mode
19
+ of using an interface provided by the Library.
20
+
21
+ A "Combined Work" is a work produced by combining or linking an
22
+ Application with the Library. The particular version of the Library
23
+ with which the Combined Work was made is also called the "Linked
24
+ Version".
25
+
26
+ The "Minimal Corresponding Source" for a Combined Work means the
27
+ Corresponding Source for the Combined Work, excluding any source code
28
+ for portions of the Combined Work that, considered in isolation, are
29
+ based on the Application, and not on the Linked Version.
30
+
31
+ The "Corresponding Application Code" for a Combined Work means the
32
+ object code and/or source code for the Application, including any data
33
+ and utility programs needed for reproducing the Combined Work from the
34
+ Application, but excluding the System Libraries of the Combined Work.
35
+
36
+
37
+ 1. Exception to Section 3 of the GNU GPL.
38
+ --------------------------------------------------------------------------------
39
+
40
+ You may convey a covered work under sections 3 and 4 of this License
41
+ without being bound by section 3 of the GNU GPL.
42
+
43
+
44
+ 2. Conveying Modified Versions.
45
+ --------------------------------------------------------------------------------
46
+
47
+ If you modify a copy of the Library, and, in your modifications, a
48
+ facility refers to a function or data to be supplied by an Application
49
+ that uses the facility (other than as an argument passed when the
50
+ facility is invoked), then you may convey a copy of the modified
51
+ version:
52
+
53
+ * a) under this License, provided that you make a good faith effort to
54
+ ensure that, in the event an Application does not supply the
55
+ function or data, the facility still operates, and performs
56
+ whatever part of its purpose remains meaningful, or
57
+
58
+ * b) under the GNU GPL, with none of the additional permissions of
59
+ this License applicable to that copy.
60
+
61
+
62
+ 3. Object Code Incorporating Material from Library Header Files.
63
+ --------------------------------------------------------------------------------
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ * a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ * b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+
80
+ 4. Combined Works.
81
+ --------------------------------------------------------------------------------
82
+
83
+ You may convey a Combined Work under terms of your choice that,
84
+ taken together, effectively do not restrict modification of the
85
+ portions of the Library contained in the Combined Work and reverse
86
+ engineering for debugging such modifications, if you also do each of
87
+ the following:
88
+
89
+ * a) Give prominent notice with each copy of the Combined Work that
90
+ the Library is used in it and that the Library and its use are
91
+ covered by this License.
92
+
93
+ * b) Accompany the Combined Work with a copy of the GNU GPL and this license
94
+ document.
95
+
96
+ * c) For a Combined Work that displays copyright notices during
97
+ execution, include the copyright notice for the Library among
98
+ these notices, as well as a reference directing the user to the
99
+ copies of the GNU GPL and this license document.
100
+
101
+ * d) Do one of the following:
102
+
103
+ * 0) Convey the Minimal Corresponding Source under the terms of this
104
+ License, and the Corresponding Application Code in a form
105
+ suitable for, and under terms that permit, the user to
106
+ recombine or relink the Application with a modified version of
107
+ the Linked Version to produce a modified Combined Work, in the
108
+ manner specified by section 6 of the GNU GPL for conveying
109
+ Corresponding Source.
110
+
111
+ * 1) Use a suitable shared library mechanism for linking with the
112
+ Library. A suitable mechanism is one that (a) uses at run time
113
+ a copy of the Library already present on the user's computer
114
+ system, and (b) will operate properly with a modified version
115
+ of the Library that is interface-compatible with the Linked
116
+ Version.
117
+
118
+ * e) Provide Installation Information, but only if you would otherwise
119
+ be required to provide such information under section 6 of the
120
+ GNU GPL, and only to the extent that such information is
121
+ necessary to install and execute a modified version of the
122
+ Combined Work produced by recombining or relinking the
123
+ Application with a modified version of the Linked Version. (If
124
+ you use option 4d0, the Installation Information must accompany
125
+ the Minimal Corresponding Source and Corresponding Application
126
+ Code. If you use option 4d1, you must provide the Installation
127
+ Information in the manner specified by section 6 of the GNU GPL
128
+ for conveying Corresponding Source.)
129
+
130
+
131
+ 5. Combined Libraries.
132
+ --------------------------------------------------------------------------------
133
+
134
+ You may place library facilities that are a work based on the
135
+ Library side by side in a single library together with other library
136
+ facilities that are not Applications and are not covered by this
137
+ License, and convey such a combined library under terms of your
138
+ choice, if you do both of the following:
139
+
140
+ * a) Accompany the combined library with a copy of the same work based
141
+ on the Library, uncombined with any other library facilities,
142
+ conveyed under the terms of this License.
143
+
144
+ * b) Give prominent notice with the combined library that part of it
145
+ is a work based on the Library, and explaining where to find the
146
+ accompanying uncombined form of the same work.
147
+
148
+
149
+ 6. Revised Versions of the GNU Lesser General Public License.
150
+ --------------------------------------------------------------------------------
151
+
152
+ The Free Software Foundation may publish revised and/or new versions
153
+ of the GNU Lesser General Public License from time to time. Such new
154
+ versions will be similar in spirit to the present version, but may
155
+ differ in detail to address new problems or concerns.
156
+
157
+ Each version is given a distinguishing version number. If the
158
+ Library as you received it specifies that a certain numbered version
159
+ of the GNU Lesser General Public License "or any later version"
160
+ applies to it, you have the option of following the terms and
161
+ conditions either of that published version or of any later version
162
+ published by the Free Software Foundation. If the Library as you
163
+ received it does not specify a version number of the GNU Lesser
164
+ General Public License, you may choose any version of the GNU Lesser
165
+ General Public License ever published by the Free Software Foundation.
166
+
167
+ If the Library as you received it specifies that a proxy can decide
168
+ whether future versions of the GNU Lesser General Public License shall
169
+ apply, that proxy's public statement of acceptance of any version is
170
+ permanent authorization for you to choose that version for the
171
+ Library.
Binary file
metadata ADDED
@@ -0,0 +1,202 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: toke
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Travis Herrick
8
+ - Joshua Book
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-03-10 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: reverb
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: faraday
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rake_tasks
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '4'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '4'
56
+ - !ruby/object:Gem::Dependency
57
+ name: gems
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: cane
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '2'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '2'
84
+ - !ruby/object:Gem::Dependency
85
+ name: rspec
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '3'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '3'
98
+ - !ruby/object:Gem::Dependency
99
+ name: webmock
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '1'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '1'
112
+ - !ruby/object:Gem::Dependency
113
+ name: vcr
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: '2'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: '2'
126
+ - !ruby/object:Gem::Dependency
127
+ name: dotenv
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: '2'
133
+ type: :development
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '2'
140
+ - !ruby/object:Gem::Dependency
141
+ name: factory_girl
142
+ requirement: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: '4'
147
+ type: :development
148
+ prerelease: false
149
+ version_requirements: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: '4'
154
+ description: Retrieve OAuth tokens
155
+ email:
156
+ - travish@awesomenesstv.com
157
+ executables: []
158
+ extensions: []
159
+ extra_rdoc_files:
160
+ - README.md
161
+ - license/gplv3.md
162
+ - license/lgplv3.md
163
+ files:
164
+ - README.md
165
+ - lib/toke.rb
166
+ - lib/toke/commands/base_command.rb
167
+ - lib/toke/commands/get_access_token_command.rb
168
+ - lib/toke/core.rb
169
+ - lib/toke/factories.rb
170
+ - lib/toke/factories/access_token.rb
171
+ - lib/toke/factories/sequences.rb
172
+ - lib/toke/models/access_token.rb
173
+ - lib/toke/params/get_access_token_params.rb
174
+ - lib/toke/responses/access_token_response.rb
175
+ - license/gplv3.md
176
+ - license/lgplv3.md
177
+ - license/lgplv3.png
178
+ homepage: https://github.com/awesomenesstv/toke
179
+ licenses:
180
+ - LGPLv3
181
+ metadata: {}
182
+ post_install_message:
183
+ rdoc_options: []
184
+ require_paths:
185
+ - lib
186
+ required_ruby_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ requirements: []
197
+ rubyforge_project:
198
+ rubygems_version: 2.4.6
199
+ signing_key:
200
+ specification_version: 4
201
+ summary: oauth token retrieval
202
+ test_files: []