g5_foundation_client 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/g5_foundation_client.rb +2 -3
- data/lib/g5_foundation_client/error.rb +3 -0
- data/lib/g5_foundation_client/fetcher.rb +1 -1
- data/lib/g5_foundation_client/record_not_found_exception.rb +1 -1
- data/lib/g5_foundation_client/version.rb +1 -1
- data/spec/lib/g5_foundation_client/fetcher_spec.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8e214f0f67d36fd31d92bb83d32e0e1933af173
|
4
|
+
data.tar.gz: 172efea40e91283f48b3ee5a8fee665aca96b515
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 503b09dd21ed7ac3d67b212101e99cad2d904985352ce2fc954c01b6645dcf52d8ec408824a5366a6da7e08b91bbab1df857e2048e7a5f5b5c6a48956d129818
|
7
|
+
data.tar.gz: 957ac5530821e4c0572559d0eed5ef4ff71c1a4ff2502da469f91a44d3f9095311aad53de4129d62b7e5d0fb08ceda71f56d20ce2e3ad13f88e133cdbe3c98e6
|
data/lib/g5_foundation_client.rb
CHANGED
@@ -11,11 +11,10 @@ module G5FoundationClient
|
|
11
11
|
def self.access_token
|
12
12
|
@access_token ||= G5AuthenticationClient::Client.new.get_access_token
|
13
13
|
end
|
14
|
-
|
15
|
-
class RecordNotFoundException < Exception
|
16
|
-
end
|
17
14
|
end
|
18
15
|
|
16
|
+
require 'g5_foundation_client/error'
|
17
|
+
require 'g5_foundation_client/record_not_found_exception'
|
19
18
|
require 'g5_foundation_client/fetcher'
|
20
19
|
|
21
20
|
require 'g5_foundation_client/models/findable_by_uid'
|
@@ -1,2 +1,2 @@
|
|
1
|
-
class G5FoundationClient::RecordNotFoundException <
|
1
|
+
class G5FoundationClient::RecordNotFoundException < G5FoundationClient::Error
|
2
2
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: g5_foundation_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Don Petersen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -138,6 +138,7 @@ files:
|
|
138
138
|
- Rakefile
|
139
139
|
- g5_foundation_client.gemspec
|
140
140
|
- lib/g5_foundation_client.rb
|
141
|
+
- lib/g5_foundation_client/error.rb
|
141
142
|
- lib/g5_foundation_client/fetcher.rb
|
142
143
|
- lib/g5_foundation_client/models/client.rb
|
143
144
|
- lib/g5_foundation_client/models/findable_by_uid.rb
|