bpm_manager 0.5.2 → 0.5.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: 85e5b6b07204015dd5d5b3c2dfd515f7828d0274
4
- data.tar.gz: 942512ee51a75963136c198206eff83c45ead4cd
3
+ metadata.gz: d1d214cee10a44f70e47a7ae5bfa25f7a26d19c4
4
+ data.tar.gz: 03af4a8681c50248f6d24645dd66278c215fe925
5
5
  SHA512:
6
- metadata.gz: 4c9dd74f1d4c3cde1feacd32c788e998e52c1ebf0ab2a919325b7b2005e7372f3cc502746112145746f8317d43fd8f69deceb2af0a773e451bba8662abc55586
7
- data.tar.gz: 6f45d68fda38b0a086c24923c5992abe7691de584f5045679161f0732abfd090e5289337a3dac87db579f95f7e95f6824a887e88e185266d7a83e34ad6b59fd9
6
+ metadata.gz: a787e7358aff22d22637e7309afd2117a98d9ec30b9f76e439e1b38c95cdd5f449d932338534f8aa509f73981515d353501170684907b4ba9fa4a9ba74f71607
7
+ data.tar.gz: f1622311dc3f650aa7cbb5475dd2cd3fc44d850e955b0b31864afa11a375b9d2c86bd06fd74c48ffe217a997b1e8e41474269902e6dceffa750accb6ffe26ade
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Ariel Presa
1
+ Copyright (c) 2015 Beatcoding LLC
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # BeatCoding BPM Manager Gem
2
- BPM Manager Gem for Red Hat jBPM & Oracle BPM engines
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 => 'scott' # your server username
35
- config.bpm_passowrd => 'tiger' # your password
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
  ```
@@ -1,3 +1,3 @@
1
1
  module BpmManager
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
@@ -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 = "scott"
9
+ config.bpm_username = "foo"
10
10
 
11
11
  # Sets the BPM connection password
12
- config.bpm_password = "tiger"
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.2
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-23 00:00:00.000000000 Z
11
+ date: 2015-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client