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

- old
+ new

@@ -1,21 +1,21 @@ -module GitWrapper - module Commands - class Pull < Git - - def remote(remote) - @remote = remote - self - end - - def branch(branch) - @branch = branch - self - end - - def command - "pull #{@remote} #{@branch}" - end - - end - end +module GitWrapper + module Commands + class Pull < Git + + def remote(remote) + @remote = remote + self + end + + def branch(branch) + @branch = branch + self + end + + def command + "pull #{@remote} #{@branch}" + end + + end + end end \ No newline at end of file