summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/c4cmts.rb
diff options
context:
space:
mode:
authorWild Kat <wk@users.noreply.github.com>2018-07-07 12:45:35 +0200
committerytti <saku@ytti.fi>2018-07-07 13:45:35 +0300
commit9db0c31f5656d1b689fd6261079730366f15591c (patch)
tree126079966b1d9eff0be48e55772150278a7f92c9 /lib/oxidized/model/c4cmts.rb
parent0dec0790f6e41cbeaf76de8fed106f7e845cd176 (diff)
use convenience methods in models
* use convenience methods in models for legibility * disable Style/SymbolProc in rubocop * introduce cut_both instead of cut_head.cut_tail chain * document cut_both convenience method
Diffstat (limited to 'lib/oxidized/model/c4cmts.rb')
-rw-r--r--lib/oxidized/model/c4cmts.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/oxidized/model/c4cmts.rb b/lib/oxidized/model/c4cmts.rb
index 8ea27c6..222713d 100644
--- a/lib/oxidized/model/c4cmts.rb
+++ b/lib/oxidized/model/c4cmts.rb
@@ -18,8 +18,7 @@ class C4CMTS < Oxidized::Model
cmd 'show environment' do |cfg|
cfg.gsub! /\s+[\-\d]+\s+C\s+[\(\s\d]+\s+\F\)/, '' # remove temperature readings
- cfg.each_line.to_a[1..-2].join
- comment cfg
+ comment cfg.cut_both
end
cmd 'show version' do |cfg|
@@ -29,8 +28,7 @@ class C4CMTS < Oxidized::Model
end
cmd 'show running-config' do |cfg|
- cfg = cfg.each_line.to_a[1..-2].join
- cfg
+ cfg.cut_both
end
cfg :telnet do