20 lines
204 B
Ruby
20 lines
204 B
Ruby
require_relative './base'
|
|
|
|
module Feature
|
|
|
|
class Branch < Feature::Base
|
|
def valid?
|
|
true
|
|
end
|
|
|
|
def help
|
|
exit
|
|
end
|
|
|
|
def execute
|
|
run_cmd "git branch"
|
|
end
|
|
end
|
|
|
|
end
|