Method: Cucumber::Messages::Git#initialize
- Defined in:
- lib/cucumber/messages/git.rb
#initialize(remote: '', revision: '', branch: nil, tag: nil) ⇒ Git
Returns a new instance of Git.
22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/cucumber/messages/git.rb', line 22 def initialize( remote: '', revision: '', branch: nil, tag: nil ) @remote = remote @revision = revision @branch = branch @tag = tag super() end |