Sha256: a836906fa31059fe1eedaf32b4dcdd186d6107919155132e35ddc489d5dcde9c
Contents?: true
Size: 625 Bytes
Versions: 49
Compression:
Stored size: 625 Bytes
Contents
# frozen_string_literal: true class String # Strips indentation in heredocs. # # For example in # # if options[:usage] # puts <<-USAGE.strip_heredoc # This command does such and such. # # Supported options are: # -h This message # ... # USAGE # end # # the user would see the usage message aligned against the left margin. # # Technically, it looks for the least indented non-empty line # in the whole string, and removes that amount of leading whitespace. def strip_heredoc gsub(/^#{scan(/^[ \t]*(?=\S)/).min}/, "".freeze) end end
Version data entries
49 entries across 49 versions & 8 rubygems