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.
210 211 212 |
# File 'lib/local_dsl.rb', line 210 def initialize(path) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
209 210 211 |
# File 'lib/local_dsl.rb', line 209 def path @path end |
Instance Method Details
#read ⇒ Object
213 214 215 |
# File 'lib/local_dsl.rb', line 213 def read UndefinedOnLocal.new end |