4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/vman/help.rb', line 4
def self.docs
docs = "\n Vman - the object version manager!\n\n Usage:\n vman configure Generate a Vman config file at ~/.vman.json\n vman pull [-f] (Dry run) Pull changes from remote S3 bucket to local directory\n vman push [-f] (Dry run) Push changes from local directory to remote S3 bucket\n vman diff [-r] Show file differences for pushing from local to remote\n vman -i Open the Vman interactive menu for finer-grained actions\n vman -v Show current installed gem version\n\n Options:\n -f Force the action and apply changes, instead of dry-run\n -r Reverse the diff. Show file differences for pulling from remote to local\n\n EOF\n\n docs\nend\n"
|