Top Level Namespace

Includes:
REXML

Defined Under Namespace

Modules: CocoapodsVemars, Pod

Instance Method Summary collapse

Instance Method Details

#vemars_require(paths = nil) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/cocoapods-vemars.rb', line 5

def vemars_require(paths = nil)
  if paths.is_a?(Array)
    paths.each { |path|
      require File.expand_path(path.to_s, $vemars_lib_dir)
    }
  elsif paths.is_a?(String)
    require File.expand_path(paths.to_s, $vemars_lib_dir)
  end
end