Method: Circus::Repos::Mercurial#repo_url
- Defined in:
- lib/circus/repos/mercurial.rb
#repo_url ⇒ Object
24 25 26 27 28 29 |
# File 'lib/circus/repos/mercurial.rb', line 24 def repo_url first_path = `(cd #{@dir}; hg paths)`.lines.first return nil unless first_path first_path.split('=', 2)[1].strip end |