opswalrus 1.0.82 → 1.0.83

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: b7751fc1fdbd7e97363d3043313cc04d260f9f612e66b4978107fde6b58b394e
4
- data.tar.gz: 050f76316d29dfae709e865ba2dfb8e6d8973f66b9b144c7423446dc3b7432d5
3
+ metadata.gz: daeb402747f507d861769c7c4904dd5d2105c1b3348e79284c45a0562f955db3
4
+ data.tar.gz: 8981d2ea29accbaeab6836cf0589a8311750bb58dab53b9abc74db747a91d204
5
5
  SHA512:
6
- metadata.gz: 6de1073c37df7abb963772cbde6a36fd001cfc7b7dedd44f992b5bdf3b800304f0fb207d61805d9080dd28979eeb49c4289538e134815b97c14c5499312a3c54
7
- data.tar.gz: 9c744adc28ba82988c62d091e5bfef7d18f2f9c317bd1c28758dddc437da1e71bc5c8581855a5a0c31fa859df82c0881aa0b6dc5d7220943f682cf2499e36b48
6
+ metadata.gz: 2ddaf981ef7a21149f43253f14226e7124292c1dfb7367d8e620b4041f42bfa132f7ad695aa73dd2eda4319110a0032e76fa011c8716c2c588845ff546b9995a
7
+ data.tar.gz: c726d7b15f2f1d7ec8cd7fab00bf4bf36131792d0f1a1c7ba9b008d00cc4ba0f77cd1d3d240ac47f7c2f8355d809178e1c7568b68a93d5d1db52bf51f9db7a61
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opswalrus (1.0.82)
4
+ opswalrus (1.0.83)
5
5
  activesupport (~> 7.0)
6
6
  bcrypt_pbkdf (~> 1.1)
7
7
  binding_of_caller (~> 1.0)
@@ -60,16 +60,16 @@ module OpsWalrus
60
60
  end
61
61
  new_mapping.merge!(password_mappings) if password_mappings
62
62
 
63
- debug(Style.green("mapping: #{mapping}"))
64
- debug(Style.green("new_mapping: #{new_mapping}"))
65
- debug(Style.green("new_mapping.empty?: #{new_mapping.empty?}"))
66
- debug(Style.green("new_mapping == @input_mappings: #{new_mapping == @input_mappings}"))
63
+ # debug(Style.green("mapping: #{mapping}"))
64
+ # debug(Style.green("new_mapping: #{new_mapping}"))
65
+ # debug(Style.green("new_mapping.empty?: #{new_mapping.empty?}"))
66
+ # debug(Style.green("new_mapping == @input_mappings: #{new_mapping == @input_mappings}"))
67
67
  if new_mapping.empty? || new_mapping == @input_mappings
68
- debug(Style.red("with_mapping -> reset"))
68
+ # debug(Style.red("with_mapping -> reset"))
69
69
  @online_matcher.reset
70
70
  yield self
71
71
  else
72
- debug(Style.red("with_mapping -> new mapping"))
72
+ # debug(Style.red("with_mapping -> new mapping"))
73
73
  yield ScopedMappingInteractionHandler.new(new_mapping, lookback_window_chars)
74
74
  end
75
75
  end
@@ -97,7 +97,7 @@ module OpsWalrus
97
97
  # trace(Style.yellow("data=`#{data}`"))
98
98
  # trace(Style.yellow("buffer=#{@online_matcher.instance_exec { @buffer } }"))
99
99
  new_matches = @online_matcher.ingest(data)
100
- debug(Style.yellow("new_matches=`#{new_matches}`"))
100
+ # debug(Style.yellow("new_matches=`#{new_matches}`"))
101
101
  response_data = new_matches.find_map do |online_match|
102
102
  mapped_output_value = @input_mappings[online_match.regex]
103
103
  case mapped_output_value
@@ -107,7 +107,7 @@ module OpsWalrus
107
107
  mapped_output_value
108
108
  end
109
109
  end
110
- debug(Style.yellow("response_data=`#{response_data.inspect}`"))
110
+ # debug(Style.yellow("response_data=`#{response_data.inspect}`"))
111
111
 
112
112
  # response_data = @input_mappings.find_map do |pattern, mapped_output_value|
113
113
  # pattern = pattern.is_a?(String) ? Regexp.new(Regexp.escape(pattern)) : pattern
@@ -1,3 +1,3 @@
1
1
  module OpsWalrus
2
- VERSION = "1.0.82"
2
+ VERSION = "1.0.83"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opswalrus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.82
4
+ version: 1.0.83
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Ellis