Class | Origami::ExternalFile |
In: |
sources/parser/file.rb
|
Parent: | FileSpec |
Creates a new external file specification.
dos: | The Windows path to this file. |
mac: | The MacOS path to this file. |
unix: | The UNIX path to this file. |
# File sources/parser/file.rb, line 156 156: def initialize(dos, mac = "", unix = "") 157: 158: if not mac.empty? or not unix.empty? 159: super(:DOS => Filename.DOS(dos), :Mac => Filename.Mac(mac), :Unix => Filename.Unix(unix)) 160: else 161: super(:F => dos) 162: end 163: 164: end