Class: Bricolage::JobNet::JobRef
- Inherits:
-
Ref
- Object
- Ref
- Bricolage::JobNet::JobRef
show all
- Defined in:
- lib/bricolage/jobnet.rb
Instance Attribute Summary
Attributes inherited from Ref
#location, #name, #subsystem
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Ref
#==, #dummy?, #hash, #initialize, #inspect, parse, #to_s
Class Method Details
.strip_exts(path) ⇒ Object
399
400
401
402
403
404
405
406
|
# File 'lib/bricolage/jobnet.rb', line 399
def JobRef.strip_exts(path)
basename = path
until (ext = basename.extname).empty?
basename = basename.basename(ext)
end
basename.to_s
end
|
Instance Method Details
#net? ⇒ Boolean
408
409
410
|
# File 'lib/bricolage/jobnet.rb', line 408
def net?
false
end
|