ed_fi_client 0.1.0 → 0.1.1
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/Gemfile.lock +2 -2
- data/docs/EdFi.html +6 -4
- data/docs/EdFi/Client.html +94 -72
- data/docs/EdFi/Client/AccessToken.html +15 -15
- data/docs/EdFi/Client/ArgumentError.html +3 -3
- data/docs/EdFi/Client/Auth.html +39 -33
- data/docs/EdFi/Client/Error.html +3 -3
- data/docs/EdFi/Client/Proxy.html +18 -18
- data/docs/EdFi/Client/Response.html +36 -22
- data/docs/EdFi/Client/UnableToAuthenticateError.html +3 -3
- data/docs/_index.html +4 -4
- data/docs/css/style.css +4 -7
- data/docs/file.README.html +95 -24
- data/docs/frames.html +1 -1
- data/docs/index.html +95 -24
- data/docs/js/app.js +44 -0
- data/docs/method_list.html +32 -32
- data/docs/top-level-namespace.html +3 -3
- data/lib/ed_fi/client.rb +2 -0
- data/lib/ed_fi/client/access_token.rb +1 -0
- data/lib/ed_fi/client/auth.rb +1 -0
- data/lib/ed_fi/client/errors.rb +1 -0
- data/lib/ed_fi/client/proxy.rb +1 -0
- data/lib/ed_fi/client/response.rb +1 -0
- data/lib/ed_fi/client/version.rb +1 -1
- data/lib/ed_fi_client.rb +2 -0
- metadata +2 -2
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Top Level Namespace
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.14
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -100,9 +100,9 @@
|
|
100
100
|
</div>
|
101
101
|
|
102
102
|
<div id="footer">
|
103
|
-
Generated on Thu
|
103
|
+
Generated on Thu Jun 21 17:02:41 2018 by
|
104
104
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
105
|
-
0.9.
|
105
|
+
0.9.14 (ruby-2.5.1).
|
106
106
|
</div>
|
107
107
|
|
108
108
|
</div>
|
data/lib/ed_fi/client.rb
CHANGED
@@ -7,6 +7,8 @@ require 'ed_fi/client/proxy'
|
|
7
7
|
require 'ed_fi/client/response'
|
8
8
|
require 'ed_fi/client/version'
|
9
9
|
|
10
|
+
module EdFi; end
|
11
|
+
|
10
12
|
## The main container defined by the **ed_fi_client** gem. Provides a connection mechanism, an
|
11
13
|
## authentication mechanism, simple CRUD methods ({#delete} / {#get} / {#patch} / {#post} / {#put}),
|
12
14
|
## and proxy generators.
|
data/lib/ed_fi/client/auth.rb
CHANGED
@@ -4,6 +4,7 @@ require 'json'
|
|
4
4
|
require 'ed_fi/client/access_token'
|
5
5
|
require 'ed_fi/client/errors'
|
6
6
|
|
7
|
+
module EdFi; end
|
7
8
|
class EdFi::Client < Crapi::Client
|
8
9
|
## The {EdFi::Client::Auth EdFi::Client::Auth} represents a complete authentication *mechanism*
|
9
10
|
## that makes the necessary calls for authorization codes and access tokens, keeps track of any
|
data/lib/ed_fi/client/errors.rb
CHANGED
data/lib/ed_fi/client/proxy.rb
CHANGED
data/lib/ed_fi/client/version.rb
CHANGED
data/lib/ed_fi_client.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ed_fi_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nestor Custodio
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|