Sha256: 4e57b68d85841fae54f01ffc11b3fad2f79baec297c78cc4c92adbd8354aedbd

Contents?: true

Size: 826 Bytes

Versions: 7

Compression:

Stored size: 826 Bytes

Contents

module Vman
  module Help

    def self.docs
      docs = <<-EOF

      Vman - the object version manager!

      Usage:
        vman configure      Generate a Vman config file at ~/.vman.json
        vman pull [-f]      (Dry run) Pull changes from remote S3 bucket to local directory
        vman push [-f]      (Dry run) Push changes from local directory to remote S3 bucket
        vman diff [-r]      Show file differences for pushing from local to remote
        vman -i             Open the Vman interactive menu for finer-grained actions
        vman -v             Show current installed gem version

      Options:
        -f      Force the action and apply changes, instead of dry-run
        -r      Reverse the diff. Show file differences for pulling from remote to local

      EOF

      docs
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
vman-0.2.0 lib/vman/help.rb
vman-0.1.5 lib/vman/help.rb
vman-0.1.4 lib/vman/help.rb
vman-0.1.3 lib/vman/help.rb
vman-0.1.2 lib/vman/help.rb
vman-0.1.1 lib/vman/help.rb
vman-0.1.0 lib/vman/help.rb