sirportly 1.2.0 → 1.2.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.
- data/lib/sirportly.rb +2 -1
- data/lib/sirportly/client.rb +5 -0
- data/lib/sirportly/data_objects/custom_field.rb +5 -0
- data/lib/sirportly/request.rb +1 -1
- metadata +3 -2
data/lib/sirportly.rb
CHANGED
@@ -12,6 +12,7 @@ require 'sirportly/spql_query'
|
|
12
12
|
require 'sirportly/data_objects/brand'
|
13
13
|
require 'sirportly/data_objects/customer'
|
14
14
|
require 'sirportly/data_objects/customer_contact_method'
|
15
|
+
require 'sirportly/data_objects/custom_field'
|
15
16
|
require 'sirportly/data_objects/department'
|
16
17
|
require 'sirportly/data_objects/escalation_path'
|
17
18
|
require 'sirportly/data_objects/filter'
|
@@ -26,7 +27,7 @@ require 'sirportly/data_objects/ticket_update'
|
|
26
27
|
require 'sirportly/data_objects/user'
|
27
28
|
|
28
29
|
module Sirportly
|
29
|
-
VERSION = '1.2.
|
30
|
+
VERSION = '1.2.1'
|
30
31
|
|
31
32
|
class << self
|
32
33
|
|
data/lib/sirportly/client.rb
CHANGED
data/lib/sirportly/request.rb
CHANGED
@@ -52,7 +52,7 @@ module Sirportly
|
|
52
52
|
when Net::HTTPServiceUnavailable
|
53
53
|
raise Sirportly::Errors::ServiceUnavailable
|
54
54
|
when Net::HTTPForbidden, Net::HTTPUnauthorized
|
55
|
-
raise Sirportly::Errors::AccessDenied, "Access Denied for '#{
|
55
|
+
raise Sirportly::Errors::AccessDenied, "Access Denied for '#{@client.token}'"
|
56
56
|
when Net::HTTPNotFound
|
57
57
|
json = JSON.parse(http_result.body)
|
58
58
|
raise Sirportly::Errors::NotFound, json['error']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sirportly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-26 00:00:00.000000000Z
|
13
13
|
dependencies: []
|
14
14
|
description: A Ruby library for interacting with the Sirportly API.
|
15
15
|
email: adam@atechmedia.com
|
@@ -21,6 +21,7 @@ files:
|
|
21
21
|
- lib/sirportly/client.rb
|
22
22
|
- lib/sirportly/data_object.rb
|
23
23
|
- lib/sirportly/data_objects/brand.rb
|
24
|
+
- lib/sirportly/data_objects/custom_field.rb
|
24
25
|
- lib/sirportly/data_objects/customer.rb
|
25
26
|
- lib/sirportly/data_objects/customer_contact_method.rb
|
26
27
|
- lib/sirportly/data_objects/department.rb
|