Class: Yobi::FindMatch
Overview
Instance Method Summary
collapse
Methods inherited from FancyHash
#initialize, #inspect, #pretty_print
Instance Method Details
#atime ⇒ Time
105
106
107
|
# File 'lib/yobi/repository/find.rb', line 105
def atime
@atime ||= Time.parse(self["atime"])
end
|
#ctime ⇒ Time
110
111
112
|
# File 'lib/yobi/repository/find.rb', line 110
def ctime
@ctime ||= Time.parse(self["ctime"])
end
|
#gid ⇒ Integer
80
81
82
|
# File 'lib/yobi/repository/find.rb', line 80
def gid
self["gid"]
end
|
#group ⇒ String
90
91
92
|
# File 'lib/yobi/repository/find.rb', line 90
def group
self["group"]
end
|
#inode ⇒ Integer
95
96
97
|
# File 'lib/yobi/repository/find.rb', line 95
def inode
self["inode"]
end
|
#mtime ⇒ Time
100
101
102
|
# File 'lib/yobi/repository/find.rb', line 100
def mtime
@mtime ||= Time.parse(self["mtime"])
end
|
#path ⇒ String
55
56
57
|
# File 'lib/yobi/repository/find.rb', line 55
def path
self["path"]
end
|
#permissions ⇒ String
70
71
72
|
# File 'lib/yobi/repository/find.rb', line 70
def permissions
self["permissions"]
end
|
#size ⇒ Integer
65
66
67
|
# File 'lib/yobi/repository/find.rb', line 65
def size
self["size"]
end
|
#type ⇒ String
60
61
62
|
# File 'lib/yobi/repository/find.rb', line 60
def type
self["type"]
end
|
#uid ⇒ Integer
75
76
77
|
# File 'lib/yobi/repository/find.rb', line 75
def uid
self["uid"]
end
|
#user ⇒ String
85
86
87
|
# File 'lib/yobi/repository/find.rb', line 85
def user
self["user"]
end
|