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

29
lib/release/base.rb Normal file
View File

@@ -0,0 +1,29 @@
require_relative '../shared/branchability'
require_relative '../shared/runnable'
module Release
class Base
include Shared::Branchability
include Shared::Runnable
attr_reader :argv
def initialize (argv)
@argv = argv
end
def help
"TBD"
end
def usage
puts
puts "USAGE: #{help}"
puts
exit
end
end
end