bpm_manager 0.5.2 → 0.5.3
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/LICENSE.txt +1 -1
- data/README.md +3 -3
- data/lib/bpm_manager/version.rb +1 -1
- data/lib/generators/bpm_manager/bpm_manager.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1d214cee10a44f70e47a7ae5bfa25f7a26d19c4
|
|
4
|
+
data.tar.gz: 03af4a8681c50248f6d24645dd66278c215fe925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a787e7358aff22d22637e7309afd2117a98d9ec30b9f76e439e1b38c95cdd5f449d932338534f8aa509f73981515d353501170684907b4ba9fa4a9ba74f71607
|
|
7
|
+
data.tar.gz: f1622311dc3f650aa7cbb5475dd2cd3fc44d850e955b0b31864afa11a375b9d2c86bd06fd74c48ffe217a997b1e8e41474269902e6dceffa750accb6ffe26ade
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# BeatCoding BPM Manager Gem
|
|
2
|
-
BPM Manager Gem for Red Hat jBPM
|
|
2
|
+
BPM Manager Gem for Red Hat jBPM
|
|
3
3
|
|
|
4
4
|
Feel free to fork, contribute & distribute
|
|
5
5
|
|
|
@@ -31,8 +31,8 @@ First configure properly the gem using the bpm_manager.rb file in 'config/initia
|
|
|
31
31
|
BpmManager.configure do |config|
|
|
32
32
|
config.bpm_url => 'bpm.server.com' # without http:// or https://
|
|
33
33
|
config.bpm_url_suffix => '/business-central/rest' # could be also /jbpm-console/rest
|
|
34
|
-
config.bpm_username => '
|
|
35
|
-
config.bpm_passowrd => '
|
|
34
|
+
config.bpm_username => 'foo' # your server username
|
|
35
|
+
config.bpm_passowrd => 'bar' # your password
|
|
36
36
|
config.bpm_use_ssl => false # use true for https
|
|
37
37
|
end
|
|
38
38
|
```
|
data/lib/bpm_manager/version.rb
CHANGED
|
@@ -6,10 +6,10 @@ BpmManager.configure do |config|
|
|
|
6
6
|
config.bpm_url_suffix = "/jbpm-console/rest"
|
|
7
7
|
|
|
8
8
|
# Sets the BPM connection username
|
|
9
|
-
config.bpm_username = "
|
|
9
|
+
config.bpm_username = "foo"
|
|
10
10
|
|
|
11
11
|
# Sets the BPM connection password
|
|
12
|
-
config.bpm_password = "
|
|
12
|
+
config.bpm_password = "bar"
|
|
13
13
|
|
|
14
14
|
# Turns on|off the SSL protocol for the server (false is default)
|
|
15
15
|
config.bpm_use_ssl = false
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bpm_manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ariel Presa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|