bpm_manager 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/bpm_manager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 400908e953d0ca8f9aff986e05cd1ffab0baf2dc
|
|
4
|
+
data.tar.gz: 9f22db5c83f5e086351d5f3da29dd1bc3a59732d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a102ff5154a3f2288461e1cc3610cb2af615811306096bf4c110f7d4b7a8c73ceba1250c9cde08fea4c1590e647189dfa7d97de9fba1a7fc642ceab1199c5760
|
|
7
|
+
data.tar.gz: d23cc93239ddd9a52018a8c0c180f97d5a23379aa72baa4a4f9a7e9ec4cb83a568cb1776382cd3785cc3e60e4a643796242c3d6e8867f0a21907d99d197ec03d
|
data/README.md
CHANGED
|
@@ -45,13 +45,13 @@ result = BpmManager.deployments()
|
|
|
45
45
|
|
|
46
46
|
## Quick Example
|
|
47
47
|
|
|
48
|
-
Get all tasks for an user id
|
|
48
|
+
Get all the tasks for an user id
|
|
49
49
|
|
|
50
50
|
```ruby
|
|
51
51
|
BpmManager.tasks('foo@bar.com')
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
Get all tasks
|
|
54
|
+
Get all the tasks with options (RedHat example). It support all REST API options for /task/query call:
|
|
55
55
|
|
|
56
56
|
```ruby
|
|
57
57
|
BpmManager.tasks({:ownerId => 'foo@bar.com', :processInstanceId => 3})
|
data/lib/bpm_manager/version.rb
CHANGED