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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/opswalrus/app.rb +1 -1
- data/lib/opswalrus/interaction_handlers.rb +1 -1
- data/lib/opswalrus/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1feb628ace7896079569c7182d0d47da191a270f36940ee650066e5e9e5a914a
|
4
|
+
data.tar.gz: c70d205d174e4bfca3ede989cc53952bddd876244ceb3795ea6274a0bdb7a240
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa9760a94e936e1498bd9cdd763f20fb31f6c15f14407b8e924de3e1a2502b64b26ea0defae96c4729c11d024dff31a0fc4712d7899d1586ac7f82d5fdd0558c
|
7
|
+
data.tar.gz: d55ad916d7f17ae0d82ad0ec531129c1b6a198ff33b4ad257c08975e42c9096367d52b9bad20efcdd8510bc7f6539e68387f89759dd3201f8546fb919b874722
|
data/Gemfile.lock
CHANGED
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 =
|
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
|
data/lib/opswalrus/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2023-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|