Class: Yobi::FindMatch
Overview
Instance Method Summary
collapse
Methods inherited from FancyHash
#initialize, #inspect, #pretty_print
Instance Method Details
#atime ⇒ Time
104
105
106
|
# File 'lib/yobi/repository/find.rb', line 104
def atime
@atime ||= Time.parse(self["atime"])
end
|
#ctime ⇒ Time
109
110
111
|
# File 'lib/yobi/repository/find.rb', line 109
def ctime
@ctime ||= Time.parse(self["ctime"])
end
|
#gid ⇒ Integer
79
80
81
|
# File 'lib/yobi/repository/find.rb', line 79
def gid
self["gid"]
end
|
#group ⇒ String
89
90
91
|
# File 'lib/yobi/repository/find.rb', line 89
def group
self["group"]
end
|
#inode ⇒ Integer
94
95
96
|
# File 'lib/yobi/repository/find.rb', line 94
def inode
self["inode"]
end
|
#mtime ⇒ Time
99
100
101
|
# File 'lib/yobi/repository/find.rb', line 99
def mtime
@mtime ||= Time.parse(self["mtime"])
end
|
#path ⇒ String
54
55
56
|
# File 'lib/yobi/repository/find.rb', line 54
def path
self["path"]
end
|
#permissions ⇒ String
69
70
71
|
# File 'lib/yobi/repository/find.rb', line 69
def permissions
self["permissions"]
end
|
#size ⇒ Integer
64
65
66
|
# File 'lib/yobi/repository/find.rb', line 64
def size
self["size"]
end
|
#type ⇒ String
59
60
61
|
# File 'lib/yobi/repository/find.rb', line 59
def type
self["type"]
end
|
#uid ⇒ Integer
74
75
76
|
# File 'lib/yobi/repository/find.rb', line 74
def uid
self["uid"]
end
|
#user ⇒ String
84
85
86
|
# File 'lib/yobi/repository/find.rb', line 84
def user
self["user"]
end
|