workmesh 1.0.2 → 1.0.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
  SHA256:
3
- metadata.gz: ee3f20e4b481d2e2fc30fc910f779a7d814126cbfbda63f8fa3d183bf2d61a39
4
- data.tar.gz: 8c4c4ee4cb1960fd50952665d1e6d4569fe3ad35337d003c2cc25da11f59ee68
3
+ metadata.gz: ab49e3b91ea1f2d0c03eea14f5bc3373c0eb6344d5b0a008ed53615c804d2653
4
+ data.tar.gz: b2b4ac8b5ca948000509709dd9f68e1e49757f1ee551c2ee880f9606464cfdb1
5
5
  SHA512:
6
- metadata.gz: a0bbefe43127da3537b45f65df0c9e0b142a5371c28ab884fc0555e6ca2bf2f86e051f4b99c4bc8ac420753ae6c0893cba7235a327a9b5da27867d465d2ecc91
7
- data.tar.gz: 56de7f81fcfd2fb1dec459d4c4ebe3c42c4a7bf41da2539c31dd946da562d0f83fac9b97ea88661861dfff471f06d84df9747e7bb1efdac3da34657cce6c8c5e
6
+ metadata.gz: 41a957ed6d3c091e98dd2213182bc5296ccef9594c75c5e171f370aef953ffd5c0895ca22537cd0323b9b691697470b1a9d719a1526587d81fd13d18bb5e1bf8
7
+ data.tar.gz: a71ba7ac77510a161abc94e38a53af4b7aa24104cd7ebe281d99fbbd66e96de194d9a0389e9b1d1bbea2eed8c253ef7f61b41cd239a6e518c2a0be067a987a1b
data/lib/workmesh.rb CHANGED
@@ -356,8 +356,12 @@ module BlackStack
356
356
  raise "The object o is not an instance of :entity_table (#{s.entity_table.to_s})" unless o.is_a?(Sequel::Model) && o.class.table_name.to_s == s.entity_table.to_s
357
357
  # if the object has not a node assigned, then return nil.
358
358
  return nil if o[s.entity_field_assignation].nil?
359
- # return the node
360
- @@nodes.select { |n| n.name.to_s == o[s.entity_field_assignation].to_s }.first
359
+ # find the node
360
+ ret = @@nodes.select { |n| n.name.to_s == o[s.entity_field_assignation].to_s }.first
361
+ # validate: the node exists
362
+ raise "The node #{o[s.entity_field_assignation]} does not exists in configuration file" if ret.nil?
363
+ # return
364
+ ret
361
365
  end
362
366
 
363
367
  # assign object to a node
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workmesh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Daniel Sardi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-18 00:00:00.000000000 Z
11
+ date: 2023-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sequel
@@ -144,8 +144,6 @@ executables: []
144
144
  extensions: []
145
145
  extra_rdoc_files: []
146
146
  files:
147
- - deployment-routines/update-config.rb
148
- - deployment-routines/update-source.rb
149
147
  - lib/workmesh.rb
150
148
  homepage: https://rubygems.org/gems/workmesh
151
149
  licenses:
@@ -1,18 +0,0 @@
1
- # setup deploying rutines
2
- BlackStack::Deployer::add_routine({
3
- :name => 'workmesh-update-config',
4
- :commands => [
5
- {
6
- # back up old configuration file
7
- # upload configuration file from local working directory to remote server
8
- :command => "
9
- cd ~/code/%workmesh_service%;
10
- mv ./config.rb ./config.%timestamp%.rb;
11
- echo \"%config_rb_content%\" > ./config.rb;
12
- ",
13
- #:matches => [ /^$/, /mv: cannot stat '\.\/config.rb': No such file or directory/ ],
14
- #:nomatches => [ { :nomatch => /.+/, :error_description => 'No output expected.' } ],
15
- :sudo => false,
16
- },
17
- ],
18
- });
@@ -1,48 +0,0 @@
1
- # setup deploying rutines
2
- BlackStack::Deployer::add_routine({
3
- :name => 'workmesh-update-source',
4
- :commands => [
5
- {
6
- :command => 'mkdir ~/code;',
7
- :matches => [ /^$/i, /File exists/i ],
8
- :sudo => false,
9
- }, {
10
- :command => '
11
- cd ~/code;
12
- git clone https://github.com/%git_user%/%workmesh_service%;
13
- ',
14
- :matches => [
15
- /already exists and is not an empty directory/i,
16
- /Cloning into/i,
17
- /Resolving deltas\: 100\% \((\d)+\/(\d)+\), done\./i,
18
- /fatal\: destination path \'.+\' already exists and is not an empty directory\./i,
19
- ],
20
- :nomatches => [ # no output means success.
21
- { :nomatch => /error/i, :error_description => 'An Error Occurred' },
22
- ],
23
- :sudo => false,
24
- }, {
25
- :command => '
26
- cd ~/code/%workmesh_service%;
27
- git fetch --all;
28
- ',
29
- :matches => [/\-> origin\//, /^Fetching origin$/],
30
- :nomatches => [ { :nomatch => /error/i, :error_description => 'An error ocurred.' } ],
31
- :sudo => false,
32
- }, {
33
- :command => '
34
- cd ~/code/%workmesh_service%;
35
- git reset --hard origin/%git_branch%;
36
- ',
37
- :matches => /HEAD is now at/,
38
- :sudo => false,
39
- }, {
40
- #
41
- :command => 'export RUBYLIB=~/code/%workmesh_service%;',
42
- :nomatches => [
43
- { :nomatch => /.+/i, :error_description => 'No output expected' },
44
- ],
45
- :sudo => false,
46
- }
47
- ],
48
- });