Class: RemoteFile
- Inherits:
-
Object
- Object
- RemoteFile
- Defined in:
- lib/local_dsl.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path) ⇒ RemoteFile
constructor
A new instance of RemoteFile.
- #read ⇒ Object
Constructor Details
#initialize(path) ⇒ RemoteFile
Returns a new instance of RemoteFile.
182 183 184 |
# File 'lib/local_dsl.rb', line 182 def initialize(path) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
181 182 183 |
# File 'lib/local_dsl.rb', line 181 def path @path end |
Instance Method Details
#read ⇒ Object
185 186 187 |
# File 'lib/local_dsl.rb', line 185 def read UndefinedOnLocal.new end |