Sha256: 3f9785a2579bc2a847c62db739a231c676c1241e56e13fcc5a5f8d3708bb943c

Contents?: true

Size: 541 Bytes

Versions: 1

Compression:

Stored size: 541 Bytes

Contents

module Space2underscore
  class Usage
    MESSAGE = <<-EOF.chomp
        NAME:
           space2underscore - Change the space into underscore

        USAGE:
           $ space2underscore new branch -c
           =>  Switched to the new branch 'new_branch’

          Or

          $ git branch -m $(space2underscore renamed branch)

        VERSION:
           #{Space2underscore::VERSION}

        OPTIONS:
           --create, -c         create a new branch
    EOF

    def content
      MESSAGE.gsub('        ', '')
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
space2underscore-0.5.2 lib/space2underscore/usage.rb