stuka 0.1.3 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e705b79ca5b428abbcf975536eb34e701a6c0bea
4
- data.tar.gz: 3c39e964888ccd74b15f4b8309d2deb0a1c0312c
3
+ metadata.gz: 713af881deea4f6fc2dcee7bd1cf495c4a8e4973
4
+ data.tar.gz: 341afc11d62f9a19ba2833b6b3889ebf777bdc9d
5
5
  SHA512:
6
- metadata.gz: 4c8a9746f732794dbe531b2585b01062411767e9b14bf9009692c1c6437bcfc1ccf647852a53d76d3d4af95e9be35718124e193d315c0c94f57d0f49b7c61c8e
7
- data.tar.gz: 2dd2c68dfce2d8a965c7521c60785b171bcbdcdd2a182587ce7877e9ac3f97a01b77ecce9c2ce40fbb4d182891253e63cf822b4f07e5219760fc8d2f4359c7a9
6
+ metadata.gz: 954a7f0abbd1099369cb489faa5f07f5ac150140672f07d06cb9097dfdc2fff93d27491a1af4cf5a04bb88a7f0727babb231512d2a5e4dfcfee936694c054697
7
+ data.tar.gz: 51a01332472b02c812b90bd239e792eba47f2833ec637cbfd832b872341d9f4202c3564c890dae9bbb625dc61888bbf6cca2ff726ce0a3afdc544bb8417c6c7b
@@ -6,7 +6,7 @@ module Stuka
6
6
 
7
7
  def self.processes_definition_path
8
8
 
9
- config_definition_path = get_config_item("PROCESS_DEFINITION_PATH")
9
+ config_definition_path = get_config_item("ProcessDefinitionPath")
10
10
 
11
11
  if config_definition_path
12
12
  return "#{Dir.pwd}/#{config_definition_path}"
@@ -18,7 +18,7 @@ module Stuka
18
18
 
19
19
  def self.processes_source_path
20
20
 
21
- config_source_path = get_config_item("PROCESS_SOURCE_PATH")
21
+ config_source_path = get_config_item("ProcessSourcePath")
22
22
 
23
23
  if config_source_path
24
24
  return "#{Dir.pwd}/#{config_source_path}"
@@ -30,7 +30,7 @@ module Stuka
30
30
 
31
31
  def self.actions_source_path
32
32
 
33
- config_source_path = get_config_item("ACTIONS_SOURCE_PATH")
33
+ config_source_path = get_config_item("ActionSourcePath")
34
34
 
35
35
  if config_source_path
36
36
  return "#{Dir.pwd}/#{config_source_path}"
@@ -87,12 +87,12 @@ module Stuka
87
87
 
88
88
  #defaults
89
89
 
90
- PROCESSES_DEFINITION_PATH = "#{Dir.pwd}/processes_definition"
90
+ PROCESSES_DEFINITION_PATH = "#{Dir.pwd}/process_definition"
91
91
 
92
92
  PROCESSES_SOURCE_PATH = "#{Dir.pwd}/lib/processes"
93
93
  ACTIONS_SOURCE_PATH = "#{Dir.pwd}/lib/actions"
94
94
 
95
- RELATIVE_PROCESSES_DEFINITION_PATH = "processes_definition"
95
+ RELATIVE_PROCESSES_DEFINITION_PATH = "process_definition"
96
96
 
97
97
  RELATIVE_PROCESSES_SOURCE_PATH = "lib/processes"
98
98
  RELATIVE_ACTIONS_SOURCE_PATH = "lib/actions"
@@ -9,7 +9,7 @@
9
9
  # block "first_block" do
10
10
  # action "sample::action_1", "this is the description of action 1"
11
11
  # endings(
12
- # success: "seccond_block",
12
+ # success: "second_block",
13
13
  # failure: "process::failure"
14
14
  # )
15
15
  # end
data/lib/stuka/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Stuka
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stuka
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Sljukic