breakout feature into parts

This commit is contained in:
rkiel
2015-06-06 06:43:34 -04:00
parent d928791be0
commit 71f7a91065
7 changed files with 184 additions and 152 deletions

11
lib/feature/branch.rb Normal file
View File

@@ -0,0 +1,11 @@
require_relative './base'
module Feature
class Branch < Feature::Base
def execute
run_cmd "git branch"
end
end
end