Module: Rake::ToolkitProgram::ShellwordsExt

Included in:
Shellwords
Defined in:
lib/rake/toolkit_program/utils.rb

Defined Under Namespace

Classes: Shellwords

Instance Method Summary collapse

Instance Method Details

#split(s, drop_comment: false) ⇒ Object



39
40
41
42
43
# File 'lib/rake/toolkit_program/utils.rb', line 39

def split(s, drop_comment: false)
  super(s).tap do |r|
    break r[0..((r.index {|i| i.start_with?('#')} || 0) - 1)] if drop_comment
  end
end