Class: Pansophy::Remote::ReadFileHead

Inherits:
Object
  • Object
show all
Includes:
Adamantium::Flat
Defined in:
lib/pansophy/remote/read_file_head.rb

Instance Method Summary collapse

Constructor Details

#initialize(bucket, path) ⇒ ReadFileHead

Returns a new instance of ReadFileHead.



6
7
8
9
# File 'lib/pansophy/remote/read_file_head.rb', line 6

def initialize(bucket, path)
  @bucket   = bucket
  @pathname = Pathname.new(path)
end

Instance Method Details

#callObject



11
12
13
14
# File 'lib/pansophy/remote/read_file_head.rb', line 11

def call
  fail ArgumentError, "#{@pathname} does not exist" if file.nil?
  file
end