Method: Jars::Classpath#classpath

Defined in:
lib/jars/classpath.rb

#classpath(scope = nil) ⇒ Object


56
57
58
59
60
61
62
# File 'lib/jars/classpath.rb', line 56

def classpath( scope = nil )
  classpath = []
  process( scope ) do |jar|
    classpath << jar.file
  end
  classpath
end