tessitura_rest 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83db577e34c3d823d26079b995c9ba2cb9fcf0a7
4
- data.tar.gz: d62c657920e2470e7011cd99983fb2a66e3633ba
3
+ metadata.gz: 62d07d0243dc7e0ea9dbf2e7ad961281b6641926
4
+ data.tar.gz: b7ad44bc77d109dedcde2454d22c26f124998f2f
5
5
  SHA512:
6
- metadata.gz: a53fb92237daf14a0845603adbe16b94feb648a02295b4eacfce0ea5d7bef84a99087b5f24c10dc488d7f701bedb5e75547c1e5f1c5c8d8495967767cfeb646e
7
- data.tar.gz: 1b5fd0a301fcf2939b8cca5d2661a0733a9ef708f081b5d38f7e973ac60db28d08e763972f29633f9741d58fceb9f1002980eb1706aeb76ad37391b6db7ea268
6
+ metadata.gz: 033b28ef0e260aa32c9a14f898e2d495e854e90d056f6e1a318e6a15adceefbf2d2da153485b6902b16e6e69bb0061cd403efd3c8df5087deca69a93ea830e05
7
+ data.tar.gz: 6701915b8f6f081e19804718162bdd1c3e43a1458e73597232c2cafdc9835726dce36e01a790b98ecb384d97621a822282d15be1e24c6a6958d9fa05512caf32
@@ -16,6 +16,7 @@ class TessituraRest
16
16
  include Issues
17
17
  include Actions
18
18
  include LocalProcedure
19
+ include Diagnostics
19
20
 
20
21
  def initialize(options={})
21
22
  @auth = {:username => ENV['TESSITURA_USERNAME'], :password => ENV['TESSITURA_PASSWORD']}
@@ -0,0 +1,7 @@
1
+ module Diagnostics
2
+
3
+ def diagnostics_status(options={})
4
+ options.merge!({:basic_auth => @auth})
5
+ self.class.get(base_api_endpoint('Diagnostics/Status'), options)
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  class TessituraRest
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tessitura_rest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brittany Martin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-29 00:00:00.000000000 Z
11
+ date: 2018-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -135,6 +135,7 @@ files:
135
135
  - lib/tessitura_rest/crm/issues.rb
136
136
  - lib/tessitura_rest/crm/web_logins.rb
137
137
  - lib/tessitura_rest/custom/local_procedure.rb
138
+ - lib/tessitura_rest/diagnostics/diagnostics.rb
138
139
  - lib/tessitura_rest/security/security_user_groups.rb
139
140
  - lib/tessitura_rest/version.rb
140
141
  - lib/tessitura_rest/web/cart.rb