Method: JSCompiler.libpath
- Defined in:
- lib/jsc.rb
.libpath(*args) ⇒ Object
Returns the library path for the module. If any arguments are given, they will be joined to the end of the libray path using File.join.
19 20 21 |
# File 'lib/jsc.rb', line 19 def self.libpath( *args ) args.empty? ? LIBPATH : ::File.join(LIBPATH, args.flatten) end |