diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-08-12 11:19:55 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-08-16 18:41:25 -0700 |
commit | 5d3885ad2704e614cf74cb0baefaf2241fe8687a (patch) | |
tree | 775cef8b7c774cc201d4ba6c2a895e6e95d23786 /lib/chef/shell/ext.rb | |
parent | 43da5b5de2618290c09e5775063f7ec21ec5b667 (diff) | |
download | chef-5d3885ad2704e614cf74cb0baefaf2241fe8687a.tar.gz |
fix some Style/ExtraSpacing that crept into this patch
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/shell/ext.rb')
-rw-r--r-- | lib/chef/shell/ext.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/shell/ext.rb b/lib/chef/shell/ext.rb index eab1d13e4d..0c10309521 100644 --- a/lib/chef/shell/ext.rb +++ b/lib/chef/shell/ext.rb @@ -39,13 +39,13 @@ module Shell # irb breaks if you prematurely define IRB::JobMangager # so these methods need to be defined at the latest possible time. unless jobs.respond_to?(:select_session_by_context) - def jobs.select_session_by_context(&block) # rubocop:disable Lint/NestedMethodDefinition + def jobs.select_session_by_context(&block) # rubocop:disable Lint/NestedMethodDefinition @jobs.select { |job| block.call(job[1].context.main) } end end unless jobs.respond_to?(:session_select) - def jobs.select_shell_session(target_context) # rubocop:disable Lint/NestedMethodDefinition + def jobs.select_shell_session(target_context) # rubocop:disable Lint/NestedMethodDefinition session = if target_context.kind_of?(Class) select_session_by_context { |main| main.kind_of?(target_context) } else |