Class: ODisk::File

Inherits:
Info
  • Object
show all
Defined in:
lib/odisk/file.rb

Constant Summary

Constants inherited from Info

Info::ERROR, Info::LOCAL, Info::NORMAL, Info::REMOTE

Instance Attribute Summary collapse

Attributes inherited from Info

#group, #master, #mode, #mtime, #name, #owner, #removed

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ File

Returns a new instance of File.



7
8
9
10
# File 'lib/odisk/file.rb', line 7

def initialize(name)
  super(name)
  @size = 0
end

Instance Attribute Details

#sizeObject

Returns the value of attribute size.



5
6
7
# File 'lib/odisk/file.rb', line 5

def size
  @size
end

Instance Method Details

#eql?(o) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


12
13
14
# File 'lib/odisk/file.rb', line 12

def eql?(o)
  super(o) && @size == o.size && @mtime.sec == o.mtime.sec
end