rse 0.1.1 → 0.1.2

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.
Files changed (6) hide show
  1. checksums.yaml +5 -5
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/lib/rse.rb +9 -6
  5. metadata +9 -10
  6. metadata.gz.sig +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 893a33287506e9db67893036fc030f8c027feddc
4
- data.tar.gz: 3588af238cb00dcea8790b87867b3f5608cd3845
2
+ SHA256:
3
+ metadata.gz: 36a05c67f09a77d1bdcb8afcf542ff78b0b19948651a27de39f9d572e68f0e3f
4
+ data.tar.gz: 717d9df27c6c4c6dcc3e3c81feb6f00786d463e473834e81b516da562cd64984
5
5
  SHA512:
6
- metadata.gz: 829b6bd1e7c32cb17cc5b351bfc8af232cb4c9c37f0d849c7091f43322c162b3f1460207530fe5c2df39202048d39734217a61690b9c0a610707ccb29047ef2b
7
- data.tar.gz: fe3bc64eda6443297f1cf24e71d320304cf783727c7099e6ec9854aec92db4c08427fedb5ed56a5a9592bbda16658a3125414da872ea6ab5ea9d7849b852f622
6
+ metadata.gz: ca8db30032ab3aaa604993761d13e7743df9f160a6a47a190d5d3bf3456223557e900e9b3fc34e15465d30e76c3f4238026482bc3a1bfc9084d8803a8dd2499f
7
+ data.tar.gz: 72a133e9035d09d96fc11d66e73a879fb480dc0f4012c89df4d9c6199f8a3958ebc7a2bee644d7db928f9eaed86899b28384a2ae0a21a3d2b6cb8fc6a1e6b1a8
Binary file
data.tar.gz.sig CHANGED
Binary file
data/lib/rse.rb CHANGED
@@ -10,20 +10,23 @@ require 'remote_dwsregistry'
10
10
  require 'spspublog_drb_client'
11
11
 
12
12
 
13
-
14
13
  class Rse
14
+ using ColouredText
15
15
 
16
16
  def initialize(package_basepath=nil, host: '', port: '61000',
17
- debug: false, loghost: 'localhost', reghost: 'localhost',
18
- spshost: 'localhost', app_rsf: nil)
17
+ debug: false, loghost: 'localhost', logport: '9090',
18
+ reghost: 'localhost', spshost: 'localhost', app_rsf: nil)
19
19
 
20
20
  @host, @port, @debug = host, port, debug
21
21
 
22
- log = SPSPubLogDRbClient.new host: loghost
22
+ puts 'before spspublog'.info if @debug
23
+ log = SPSPubLogDRbClient.new host: loghost, port: logport
24
+
25
+ puts 'before reg'.info if @debug
23
26
  reg = RemoteDwsRegistry.new domain: reghost
24
27
 
25
- @rs = rs = RSFServices.new reg,
26
- package_basepath: package_basepath, log: log, app_rsf: app_rsf
28
+ @rs = rs = RSFServices.new reg, package_basepath: package_basepath,
29
+ log: log, app_rsf: app_rsf, debug: debug
27
30
 
28
31
  sps = SPSSub.new host: spshost
29
32
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Robertson
@@ -30,7 +30,7 @@ cert_chain:
30
30
  gou7xRtdjGdiyT3PyvX0OQ+99BHHx73PhDP1g8iDZJM0XfIVmfFIYOOCSNgKEgUM
31
31
  V1M=
32
32
  -----END CERTIFICATE-----
33
- date: 2018-07-31 00:00:00.000000000 Z
33
+ date: 2019-01-21 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: sps-sub
@@ -96,22 +96,22 @@ dependencies:
96
96
  name: spspublog_drb_client
97
97
  requirement: !ruby/object:Gem::Requirement
98
98
  requirements:
99
- - - "~>"
100
- - !ruby/object:Gem::Version
101
- version: '0.1'
102
99
  - - ">="
103
100
  - !ruby/object:Gem::Version
104
101
  version: 0.1.0
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '0.1'
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - "~>"
110
- - !ruby/object:Gem::Version
111
- version: '0.1'
112
109
  - - ">="
113
110
  - !ruby/object:Gem::Version
114
111
  version: 0.1.0
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: '0.1'
115
115
  description:
116
116
  email: james@jamesrobertson.eu
117
117
  executables: []
@@ -138,8 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
138
  - !ruby/object:Gem::Version
139
139
  version: '0'
140
140
  requirements: []
141
- rubyforge_project:
142
- rubygems_version: 2.6.13
141
+ rubygems_version: 3.0.2
143
142
  signing_key:
144
143
  specification_version: 4
145
144
  summary: Executes Ruby jobs (using the rsf_services gem) from a DRb server.
metadata.gz.sig CHANGED
Binary file