Sha256: 767b8e91e411fcf07a8d80ab12e171883330a39f0800c625cf5f931ea5f6674a
Contents?: true
Size: 512 Bytes
Versions: 3
Compression:
Stored size: 512 Bytes
Contents
#!/usr/bin/env ruby # -*- mode: ruby -*- require 'docopt' require 'org-converge' doc = <<OPTIONS org-converge: A light configuration management tool for Org mode Usage: org-converge <org_file> [--tangle] [--showfiles] [--log=<logfile>] [--root-dir=<root_dir>] [--runmode=<runmode>] Options: -h --help Show this screen. OPTIONS begin require "pp" cmd = Docopt::docopt(doc) rescue Docopt::Exit => e puts e.message end exit 1 unless cmd o = OrgConverge::Command.new(cmd) o.execute!
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
org-converge-0.0.5 | bin/org-converge |
org-converge-0.0.4 | bin/org-converge |
org-converge-0.0.3 | bin/org-converge |