Class: Pansophy::Remote::ReadFile
- Inherits:
-
Object
- Object
- Pansophy::Remote::ReadFile
- Includes:
- Adamantium::Flat
- Defined in:
- lib/pansophy/remote/read_file.rb
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(bucket, path) ⇒ ReadFile
constructor
A new instance of ReadFile.
Constructor Details
#initialize(bucket, path) ⇒ ReadFile
Returns a new instance of ReadFile.
6 7 8 9 |
# File 'lib/pansophy/remote/read_file.rb', line 6 def initialize(bucket, path) @bucket = bucket @pathname = Pathname.new(path) end |
Instance Method Details
#call ⇒ Object
11 12 13 14 |
# File 'lib/pansophy/remote/read_file.rb', line 11 def call fail ArgumentError, "#{@pathname} does not exist" if file.nil? file.body end |