Method: RJGit::Configuration#load
- Defined in:
- lib/config.rb
#load ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/config.rb', line 16 def load return self if @loaded begin @jconfig.from_text(IO.read(@path)) @loaded = true rescue => exception @loaded = false raise IOException.new(exception.) end return self end |