Files
git-utilities/lib/feature/base.rb
2015-06-07 20:49:23 -04:00

30 lines
381 B
Ruby

require_relative '../shared/branchability'
require_relative '../shared/runnable'
module Feature
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