opswalrus 1.0.93 → 1.0.94

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: a41fcb970962e18713c8687bb1d3226944e74cc052dcf2815b23bc86bd82a422
4
- data.tar.gz: 03fd0fbcdae90f715dea4b80ec3eb0f367eec93c9c94db9bf314e98aea66c383
3
+ metadata.gz: 1feb628ace7896079569c7182d0d47da191a270f36940ee650066e5e9e5a914a
4
+ data.tar.gz: c70d205d174e4bfca3ede989cc53952bddd876244ceb3795ea6274a0bdb7a240
5
5
  SHA512:
6
- metadata.gz: 4e9d0a83c0bbc5f4295986d3e941263f9579cce257f606c64f62e44826ea8a1b5cb05b86fbbefe0034536ec4cf5266f5c72a889e409b07d502cd2d1309ccfe2c
7
- data.tar.gz: 111b5fbac2877cbe95f9fca3080e37f5790f9e36b137ef31cfdacda9332d07ec4f5e3986b1afdf9d48f4d53baf8bbba174bd8784c721962294b37f4ec400b345
6
+ metadata.gz: fa9760a94e936e1498bd9cdd763f20fb31f6c15f14407b8e924de3e1a2502b64b26ea0defae96c4729c11d024dff31a0fc4712d7899d1586ac7f82d5fdd0558c
7
+ data.tar.gz: d55ad916d7f17ae0d82ad0ec531129c1b6a198ff33b4ad257c08975e42c9096367d52b9bad20efcdd8510bc7f6539e68387f89759dd3201f8546fb919b874722
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opswalrus (1.0.93)
4
+ opswalrus (1.0.94)
5
5
  activesupport (~> 7.0)
6
6
  bcrypt_pbkdf (~> 1.1)
7
7
  binding_of_caller (~> 1.0)
data/lib/opswalrus/app.rb CHANGED
@@ -228,7 +228,7 @@ module OpsWalrus
228
228
  internal_ops_file = OpsFile.new(self, __FILE__.to_pathname.dirname.join(ops_file_name))
229
229
  op = OperationRunner.new(self, internal_ops_file)
230
230
  result = op.run([], params_json_hash: params)
231
- puts "result class=#{result.class}"
231
+ # puts "result class=#{result.class}"
232
232
  exit_status = result.exit_status
233
233
  stdout = JSON.pretty_generate(result.value)
234
234
  output = if exit_status == 0
@@ -9,7 +9,7 @@ module OpsWalrus
9
9
 
10
10
  attr_accessor :input_mappings # Hash[ String | Regex => (String | Proc) ]
11
11
 
12
- def initialize(mappings, lookback_window_chars = 200)
12
+ def initialize(mappings, lookback_window_chars = 2000)
13
13
  @input_mappings = mappings
14
14
  @online_matcher = Kleene::NaiveOnlineRegex.new(mappings.keys, lookback_window_chars)
15
15
  end
@@ -1,3 +1,3 @@
1
1
  module OpsWalrus
2
- VERSION = "1.0.93"
2
+ VERSION = "1.0.94"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opswalrus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.93
4
+ version: 1.0.94
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Ellis
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-13 00:00:00.000000000 Z
11
+ date: 2023-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport