module Mercurial
Wrapper module. Nothing interesting here except that you can specify global configs with the configure
method.
Constants
- VERSION
Attributes
configuration[RW]
Public Class Methods
configure() { |configuration| ... }
click to toggle source
Change gem's global settings.
Mercurial.configure do |conf| conf.hg_binary_path = "/usr/bin/hg" end
# File lib/mercurial-ruby.rb, line 31 def configure yield(configuration) end