Class: File
- Inherits:
-
Object
show all
- Defined in:
- lib/framework/autocomplete/File.rb,
lib/framework/builtinME.rb,
lib/extensions/mspec/mspec/pp.rb
Overview
It is auto-generated content. Do not do required for this file in your application.
Defined Under Namespace
Modules: Constants, WaitReadable, WaitWritable
Classes: Stat
Constant Summary
collapse
- SEPARATOR =
"/"
- Separator =
"/"
- ALT_SEPARATOR =
"\\"
- PATH_SEPARATOR =
";"
- SEEK_SET =
0
- SEEK_CUR =
1
- SEEK_END =
2
- LOCK_SH =
1
- LOCK_EX =
2
- LOCK_UN =
8
- LOCK_NB =
4
- RDONLY =
0
- WRONLY =
1
- RDWR =
2
- APPEND =
8
- CREAT =
256
- EXCL =
1024
- NONBLOCK =
4
- TRUNC =
512
- BINARY =
32768
- FNM_NOESCAPE =
1
- FNM_PATHNAME =
2
- FNM_DOTMATCH =
4
- FNM_CASEFOLD =
8
- FNM_SYSCASE =
8
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.absolute_path(rest) ⇒ Object
256
257
|
# File 'lib/framework/autocomplete/File.rb', line 256
def self.absolute_path(rest)
end
|
.atime(req) ⇒ Object
222
223
|
# File 'lib/framework/autocomplete/File.rb', line 222
def self.atime(req)
end
|
.basename(rest) ⇒ Object
262
263
|
# File 'lib/framework/autocomplete/File.rb', line 262
def self.basename(rest)
end
|
.binread(fileName) ⇒ Object
154
155
|
# File 'lib/framework/autocomplete/File.rb', line 154
def self.binread(fileName)
end
|
.blockdev?(req) ⇒ Boolean
204
205
|
# File 'lib/framework/autocomplete/File.rb', line 204
def self.blockdev?(req)
end
|
.chardev?(req) ⇒ Boolean
206
207
|
# File 'lib/framework/autocomplete/File.rb', line 206
def self.chardev?(req)
end
|
.chmod(rest) ⇒ Object
230
231
|
# File 'lib/framework/autocomplete/File.rb', line 230
def self.chmod(rest)
end
|
.chown(rest) ⇒ Object
232
233
|
# File 'lib/framework/autocomplete/File.rb', line 232
def self.chown(rest)
end
|
162
163
|
# File 'lib/framework/autocomplete/File.rb', line 162
def self.close
end
|
.ctime(req) ⇒ Object
226
227
|
# File 'lib/framework/autocomplete/File.rb', line 226
def self.ctime(req)
end
|
.delete(rest) ⇒ Object
246
247
|
# File 'lib/framework/autocomplete/File.rb', line 246
def self.delete(rest)
end
|
.directory?(req) ⇒ Boolean
164
165
|
# File 'lib/framework/autocomplete/File.rb', line 164
def self.directory?(req)
end
|
.dirname(req) ⇒ Object
264
265
|
# File 'lib/framework/autocomplete/File.rb', line 264
def self.dirname(req)
end
|
.executable?(req) ⇒ Boolean
182
183
|
# File 'lib/framework/autocomplete/File.rb', line 182
def self.executable?(req)
end
|
.executable_real?(req) ⇒ Boolean
184
185
|
# File 'lib/framework/autocomplete/File.rb', line 184
def self.executable_real?(req)
end
|
.exist?(req) ⇒ Boolean
166
167
|
# File 'lib/framework/autocomplete/File.rb', line 166
def self.exist?(req)
end
|
.exists?(req) ⇒ Boolean
168
169
|
# File 'lib/framework/autocomplete/File.rb', line 168
def self.exists?(req)
end
|
.expand_path(rest) ⇒ Object
254
255
|
# File 'lib/framework/autocomplete/File.rb', line 254
def self.expand_path(rest)
end
|
.extname(req) ⇒ Object
266
267
|
# File 'lib/framework/autocomplete/File.rb', line 266
def self.extname(req)
end
|
.file?(req) ⇒ Boolean
186
187
|
# File 'lib/framework/autocomplete/File.rb', line 186
def self.file?(req)
end
|
.fnmatch(rest) ⇒ Object
274
275
|
# File 'lib/framework/autocomplete/File.rb', line 274
def self.fnmatch(rest)
end
|
.fnmatch?(rest) ⇒ Boolean
276
277
|
# File 'lib/framework/autocomplete/File.rb', line 276
def self.fnmatch?(rest)
end
|
.ftype(req) ⇒ Object
220
221
|
# File 'lib/framework/autocomplete/File.rb', line 220
def self.ftype(req)
end
|
.grpowned?(req) ⇒ Boolean
196
197
|
# File 'lib/framework/autocomplete/File.rb', line 196
def self.grpowned?(req)
end
|
.identical?(req, req1) ⇒ Boolean
214
215
|
# File 'lib/framework/autocomplete/File.rb', line 214
def self.identical?(req,req1)
end
|
.join(string1, string2) ⇒ Object
311
312
313
314
315
316
317
318
319
320
321
322
|
# File 'lib/framework/builtinME.rb', line 311
def File.join *aString
s = ""
first = true
aString.each {|x|
if !first and !s.end_with?(File::SEPARATOR)
s += File::SEPARATOR
end
s+= x
first = false
}
s
end
|
234
235
|
# File 'lib/framework/autocomplete/File.rb', line 234
def self.lchmod
end
|
236
237
|
# File 'lib/framework/autocomplete/File.rb', line 236
def self.lchown
end
|
.link(req, req1) ⇒ Object
238
239
|
# File 'lib/framework/autocomplete/File.rb', line 238
def self.link(req,req1)
end
|
.lstat(req) ⇒ Object
218
219
|
# File 'lib/framework/autocomplete/File.rb', line 218
def self.lstat(req)
end
|
.mtime(req) ⇒ Object
224
225
|
# File 'lib/framework/autocomplete/File.rb', line 224
def self.mtime(req)
end
|
.new(fileName) ⇒ Object
156
157
|
# File 'lib/framework/autocomplete/File.rb', line 156
def self.new(fileName)
end
|
.open(fileName) ⇒ Object
158
159
|
# File 'lib/framework/autocomplete/File.rb', line 158
def self.open(fileName)
end
|
.owned?(req) ⇒ Boolean
194
195
|
# File 'lib/framework/autocomplete/File.rb', line 194
def self.owned?(req)
end
|
.path(req) ⇒ Object
268
269
|
# File 'lib/framework/autocomplete/File.rb', line 268
def self.path(req)
end
|
.pipe?(req) ⇒ Boolean
198
199
|
# File 'lib/framework/autocomplete/File.rb', line 198
def self.pipe?(req)
end
|
.readable?(req) ⇒ Boolean
170
171
|
# File 'lib/framework/autocomplete/File.rb', line 170
def self.readable?(req)
end
|
.readable_real?(req) ⇒ Boolean
172
173
|
# File 'lib/framework/autocomplete/File.rb', line 172
def self.readable_real?(req)
end
|
242
243
|
# File 'lib/framework/autocomplete/File.rb', line 242
def self.readlink
end
|
.realdirpath(rest) ⇒ Object
260
261
|
# File 'lib/framework/autocomplete/File.rb', line 260
def self.realdirpath(rest)
end
|
.realpath(rest) ⇒ Object
258
259
|
# File 'lib/framework/autocomplete/File.rb', line 258
def self.realpath(rest)
end
|
.rename(req, req1) ⇒ Object
248
249
|
# File 'lib/framework/autocomplete/File.rb', line 248
def self.rename(req,req1)
end
|
.setgid?(req) ⇒ Boolean
210
211
|
# File 'lib/framework/autocomplete/File.rb', line 210
def self.setgid?(req)
end
|
.setuid?(req) ⇒ Boolean
208
209
|
# File 'lib/framework/autocomplete/File.rb', line 208
def self.setuid?(req)
end
|
.size(req) ⇒ Object
192
193
|
# File 'lib/framework/autocomplete/File.rb', line 192
def self.size(req)
end
|
.size?(req) ⇒ Boolean
190
191
|
# File 'lib/framework/autocomplete/File.rb', line 190
def self.size?(req)
end
|
.socket?(req) ⇒ Boolean
202
203
|
# File 'lib/framework/autocomplete/File.rb', line 202
def self.socket?(req)
end
|
.split(req) ⇒ Object
270
271
|
# File 'lib/framework/autocomplete/File.rb', line 270
def self.split(req)
end
|
.stat(req) ⇒ Object
216
217
|
# File 'lib/framework/autocomplete/File.rb', line 216
def self.stat(req)
end
|
.sticky?(req) ⇒ Boolean
212
213
|
# File 'lib/framework/autocomplete/File.rb', line 212
def self.sticky?(req)
end
|
240
241
|
# File 'lib/framework/autocomplete/File.rb', line 240
def self.symlink
end
|
.symlink?(req) ⇒ Boolean
200
201
|
# File 'lib/framework/autocomplete/File.rb', line 200
def self.symlink?(req)
end
|
.truncate(req, req1) ⇒ Object
252
253
|
# File 'lib/framework/autocomplete/File.rb', line 252
def self.truncate(req,req1)
end
|
.umask(rest) ⇒ Object
250
251
|
# File 'lib/framework/autocomplete/File.rb', line 250
def self.umask(rest)
end
|
.unlink(rest) ⇒ Object
244
245
|
# File 'lib/framework/autocomplete/File.rb', line 244
def self.unlink(rest)
end
|
.utime(rest) ⇒ Object
228
229
|
# File 'lib/framework/autocomplete/File.rb', line 228
def self.utime(rest)
end
|
.world_readable?(req) ⇒ Boolean
174
175
|
# File 'lib/framework/autocomplete/File.rb', line 174
def self.world_readable?(req)
end
|
.world_writable?(req) ⇒ Boolean
180
181
|
# File 'lib/framework/autocomplete/File.rb', line 180
def self.world_writable?(req)
end
|
.writable?(req) ⇒ Boolean
176
177
|
# File 'lib/framework/autocomplete/File.rb', line 176
def self.writable?(req)
end
|
.writable_real?(req) ⇒ Boolean
178
179
|
# File 'lib/framework/autocomplete/File.rb', line 178
def self.writable_real?(req)
end
|
.write(content) ⇒ Object
160
161
|
# File 'lib/framework/autocomplete/File.rb', line 160
def self.write(content)
end
|
.zero?(req) ⇒ Boolean
188
189
|
# File 'lib/framework/autocomplete/File.rb', line 188
def self.zero?(req)
end
|
Instance Method Details
280
281
|
# File 'lib/framework/autocomplete/File.rb', line 280
def atime
end
|
#chmod(req) ⇒ Object
288
289
|
# File 'lib/framework/autocomplete/File.rb', line 288
def chmod(req)
end
|
#chown(req, req1) ⇒ Object
290
291
|
# File 'lib/framework/autocomplete/File.rb', line 290
def chown(req,req1)
end
|
284
285
|
# File 'lib/framework/autocomplete/File.rb', line 284
def ctime
end
|
#flock(req) ⇒ Object
294
295
|
# File 'lib/framework/autocomplete/File.rb', line 294
def flock(req)
end
|
278
279
|
# File 'lib/framework/autocomplete/File.rb', line 278
def lstat
end
|
282
283
|
# File 'lib/framework/autocomplete/File.rb', line 282
def mtime
end
|
296
297
|
# File 'lib/framework/autocomplete/File.rb', line 296
def path
end
|
286
287
|
# File 'lib/framework/autocomplete/File.rb', line 286
def size
end
|
298
299
|
# File 'lib/framework/autocomplete/File.rb', line 298
def to_path
end
|
#truncate(req) ⇒ Object
292
293
|
# File 'lib/framework/autocomplete/File.rb', line 292
def truncate(req)
end
|