Sha256: a319dc4c6d3b3fc98540298478283b559552279852212031a13822c5d2b448e9

Contents?: true

Size: 221 Bytes

Versions: 3

Compression:

Stored size: 221 Bytes

Contents

module GitWrapper
  module Commands
    class Merge < Git

      def commit(commit)
        @commit = commit
        self
      end

      def command
        "merge #{@commit}"
      end

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
git_wrapper-1.0.2 lib/git_wrapper/commands/merge.rb
git_wrapper-1.0.1 lib/git_wrapper/commands/merge.rb
git_wrapper-1.0.0 lib/git_wrapper/commands/merge.rb