Module: Pod
- Defined in:
- lib/pod.rb,
lib/pod/rc.rb,
lib/pod/src/downloader.rb
Defined Under Namespace
Class Method Summary collapse
Class Method Details
.rc ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/pod.rb', line 2 def self.rc return @rc if not @rc.nil? rc_paths.each do |rc_path| if File.exist?(rc_path) @rc = Rc.new(rc_path) break end end @rc end |