Sha256: 61b4e6392a40cd9411a981cef3a6ac2cd1e227fd8941d5fece713c540df5620a

Contents?: true

Size: 594 Bytes

Versions: 58

Compression:

Stored size: 594 Bytes

Contents

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

58 entries across 56 versions & 9 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/core_ext/string/strip.rb
activesupport-5.0.7.2 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.7.1 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.7 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.6 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.6.rc1 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.5 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.5.rc2 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.5.rc1 lib/active_support/core_ext/string/strip.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
activesupport-5.0.4 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.4.rc1 lib/active_support/core_ext/string/strip.rb
activesupport-5.0.3 lib/active_support/core_ext/string/strip.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
lazy_record-0.2.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
lazy_record-0.2.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
lazy_record-0.1.9 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
lazy_record-0.1.8 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb
lazy_record-0.1.7 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/core_ext/string/strip.rb