release: started

This commit is contained in:
rkiel
2017-09-19 21:18:37 -04:00
parent 8f3489d1ff
commit a1cc5f7cd5
5 changed files with 131 additions and 0 deletions

10
bin/release Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env ruby
require_relative '../lib/release/commander'
commander = Release::Commander.new(ARGV)
if commander.valid?
commander.execute
else
commander.usage
end