allscripts_unity_client 3.1.0 → 3.1.1

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: 9e799d847f4e7c4653a49e80eba2c7f4462cd8e4
4
- data.tar.gz: d1de43cc12359a7222f6bf5448d241ac06baf7c7
3
+ metadata.gz: 2cc1dc6e9c9c75d6a6e1910bca9b2949d9907be4
4
+ data.tar.gz: aca63c503d524f44ff7573f521da8f9ca476833c
5
5
  SHA512:
6
- metadata.gz: 3048ecc2d9700350642df7b89bb19a76211df6c3a094ed6d8cf9d29756e575a533d3f1783dd8bc13d7b3bcbedc3ad584886f87bf82b2a958dd667ea2ecb8e99c
7
- data.tar.gz: 25ec4528e77bd9f546af030847e0688f487ec4df77e9f2445b1f41273e2252f57b0bc8b122c4822f404c711559c19618f8666261aefef2aabc7bb74bde747f2f
6
+ metadata.gz: 95c6526bd79d086d10ce6ef806b372f84cd4ac54b2ab346d026beb9ac7ae64ba3e98b835af1c1d324baab12377dee055b7021f62e72137eca3af49d66b05c4c6
7
+ data.tar.gz: 86d424f27dbab33e81dca8604554cdc4cac8155c787b404ab31f1cacc380237782cd80f1a18a2067c1bbcce07b9059e098c262babf1c1d7f2c164be3284cdad7
@@ -24,7 +24,7 @@ module AllscriptsUnityClient
24
24
  # Returns an instance of Client.
25
25
  def self.create(options = {})
26
26
  options[:mode] ||= :json
27
- if options[:log] != false # explictly
27
+ if options[:log] != false # explicitly
28
28
  options[:log] = true
29
29
  end
30
30
 
@@ -4,7 +4,7 @@ module AllscriptsUnityClient
4
4
 
5
5
  # Providers an interface to access Unity endpoints.
6
6
  #
7
- # Build using a dependcy injection pattern. A Client instances takes an instance of
7
+ # Build using a dependency injection pattern. A Client instances takes an instance of
8
8
  # ClientDriver and delegates Unity endpoint methods to the ClientDriver.
9
9
  class Client
10
10
  attr_accessor :client_driver
@@ -139,11 +139,12 @@ module AllscriptsUnityClient
139
139
  magic(magic_parameters)
140
140
  end
141
141
 
142
- def get_clinical_summary(userid, patientid)
142
+ def get_clinical_summary(userid, patientid, extra_med_data = false)
143
143
  magic_parameters = {
144
144
  action: 'GetClinicalSummary',
145
145
  userid: userid,
146
- patientid: patientid
146
+ patientid: patientid,
147
+ parameter3: extra_med_data ? 'Y' : nil
147
148
  }
148
149
  response = magic(magic_parameters)
149
150
 
@@ -1,3 +1,3 @@
1
1
  module AllscriptsUnityClient
2
- VERSION = '3.1.0'
2
+ VERSION = '3.1.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: allscripts_unity_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucian Cesca
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-10 00:00:00.000000000 Z
11
+ date: 2015-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient
@@ -282,7 +282,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
282
282
  version: '0'
283
283
  requirements: []
284
284
  rubyforge_project:
285
- rubygems_version: 2.4.3
285
+ rubygems_version: 2.4.8
286
286
  signing_key:
287
287
  specification_version: 4
288
288
  summary: Allscripts Unity API client