Files
git-utilities/lib/release/base.rb
2017-09-19 21:18:37 -04:00

30 lines
381 B
Ruby

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