allscripts_unity_client 1.3.3 → 1.3.4
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/README.md +1 -0
- data/lib/allscripts_unity_client/client.rb +7 -0
- data/lib/allscripts_unity_client/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
|
@@ -118,6 +118,7 @@ A number of helper methods exist that abstract away the details of the Magic ope
|
|
|
118
118
|
- `get_server_info`
|
|
119
119
|
- `get_task(userid, transaction_id)`
|
|
120
120
|
- `get_task_list(userid = nil, since = nil)`
|
|
121
|
+
- `last_logs`
|
|
121
122
|
- `save_rx(userid, patientid, rxxml)`
|
|
122
123
|
- `save_task(userid, patientid, task_type = nil, target_user = nil, work_object_id = nil, comments = nil)`
|
|
123
124
|
- `save_task_status(userid, transaction_id = nil, param = nil, delegate_id = nil, comment = nil)`
|
|
@@ -403,6 +403,13 @@ module AllscriptsUnityClient
|
|
|
403
403
|
raise NotImplementedError, "GetVitals magic action not implemented"
|
|
404
404
|
end
|
|
405
405
|
|
|
406
|
+
def last_logs
|
|
407
|
+
magic_parameters = {
|
|
408
|
+
:action => "LastLogs"
|
|
409
|
+
}
|
|
410
|
+
magic(magic_parameters)
|
|
411
|
+
end
|
|
412
|
+
|
|
406
413
|
def make_task
|
|
407
414
|
raise NotImplementedError, "MakeTask magic action not implemented"
|
|
408
415
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: allscripts_unity_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2014-
|
|
13
|
+
date: 2014-03-03 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: savon
|