Class: Reaver::Git
- Inherits:
-
Object
- Object
- Reaver::Git
- Defined in:
- lib/reaver/git.rb
Overview
Treat git
Instance Method Summary collapse
-
#initialize(url, dest) ⇒ Git
constructor
A new instance of Git.
Constructor Details
#initialize(url, dest) ⇒ Git
Returns a new instance of Git.
8 9 10 11 12 |
# File 'lib/reaver/git.rb', line 8 def initialize(url, dest) @dest = "#{ENV['HOME']}/#{dest}" @url = url x end |