lib/git_wrapper/commands/status.rb in git_wrapper-1.0.2 vs lib/git_wrapper/commands/status.rb in git_wrapper-1.0.3

- old
+ new

@@ -1,17 +1,17 @@ -module GitWrapper - module Commands - class Status < Git - - def command - 'status --porcelain' - end - - def result - output.split(/\n/).map do |line| - Results::StatusPorcelain.parse(line) - end - end - - end - end +module GitWrapper + module Commands + class Status < Git + + def command + 'status --porcelain' + end + + def result + output.split(/\n/).map do |line| + Results::StatusPorcelain.parse(line) + end + end + + end + end end \ No newline at end of file