20 lines
213 B
Ruby
20 lines
213 B
Ruby
require_relative './base'
|
|
|
|
module Feature
|
|
|
|
class Branch < Feature::Base
|
|
def valid?
|
|
true
|
|
end
|
|
|
|
def help
|
|
"feature branch"
|
|
end
|
|
|
|
def execute
|
|
git_show_branches
|
|
end
|
|
end
|
|
|
|
end
|