Class: RIO::IOS::Generic

Inherits:
Object show all
Defined in:
lib/rio/ios/generic.rb

Overview

:nodoc: all

Instance Method Summary collapse

Constructor Details

#initialize(el, m = 'r') ⇒ Generic

Returns a new instance of Generic.



52
53
# File 'lib/rio/ios/generic.rb', line 52

def initialize(el,m='r')
end

Instance Method Details

#<<(obj) ⇒ Object



55
# File 'lib/rio/ios/generic.rb', line 55

def <<(obj) self end

#binmodeObject



56
# File 'lib/rio/ios/generic.rb', line 56

def binmode() self end

#callstr(func, *args) ⇒ Object



102
103
104
# File 'lib/rio/ios/generic.rb', line 102

def callstr(func,*args)
  self.class.to_s+'['+self.to_s+']'+'.'+func.to_s+'('+args.join(',')+')'
end

#closeObject



57
# File 'lib/rio/ios/generic.rb', line 57

def close() nil end

#close_readObject



58
# File 'lib/rio/ios/generic.rb', line 58

def close_read() nil end

#close_writeObject



59
# File 'lib/rio/ios/generic.rb', line 59

def close_write() nil end

#closed?Boolean

Returns:

  • (Boolean)


60
# File 'lib/rio/ios/generic.rb', line 60

def closed?() true end

#each(sep_string = $/, &block) ⇒ Object



61
# File 'lib/rio/ios/generic.rb', line 61

def each(sep_string=$/,&block) self end

#each_byte(sep_string = $/, &block) ⇒ Object



63
# File 'lib/rio/ios/generic.rb', line 63

def each_byte(sep_string=$/,&block) nil end

#each_line(sep_string = $/, &block) ⇒ Object



62
# File 'lib/rio/ios/generic.rb', line 62

def each_line(sep_string=$/,&block) self end

#eof?Boolean

Returns:

  • (Boolean)


64
# File 'lib/rio/ios/generic.rb', line 64

def eof?() true end

#fcntl(integer_cmd, arg) ⇒ Object



65
# File 'lib/rio/ios/generic.rb', line 65

def fcntl(integer_cmd,arg) nil end

#filenoObject



66
# File 'lib/rio/ios/generic.rb', line 66

def fileno() nil end

#flushObject



68
# File 'lib/rio/ios/generic.rb', line 68

def flush() self end

#fsyncObject



69
# File 'lib/rio/ios/generic.rb', line 69

def fsync() nil end

#getcObject



70
# File 'lib/rio/ios/generic.rb', line 70

def getc() nil end

#gets(sep_string = $/) ⇒ Object



71
# File 'lib/rio/ios/generic.rb', line 71

def gets(sep_string=$/) nil end

#ioctl(integer_cmd, arg) ⇒ Object



72
# File 'lib/rio/ios/generic.rb', line 72

def ioctl(integer_cmd,arg) nil end

#isattyObject



73
# File 'lib/rio/ios/generic.rb', line 73

def isatty() false end

#linenoObject



75
# File 'lib/rio/ios/generic.rb', line 75

def lineno() 0 end

#lineno=(a) ⇒ Object



76
# File 'lib/rio/ios/generic.rb', line 76

def lineno=(a) nil end

#pidObject



77
# File 'lib/rio/ios/generic.rb', line 77

def pid() nil end

#posObject



78
# File 'lib/rio/ios/generic.rb', line 78

def pos() nil end

#pos=(v) ⇒ Object



80
# File 'lib/rio/ios/generic.rb', line 80

def pos=(v) self.pos end


81
# File 'lib/rio/ios/generic.rb', line 81

def print(*objs) nil end

#printf(format, *objs) ⇒ Object



82
# File 'lib/rio/ios/generic.rb', line 82

def printf(format,*objs) nil end

#putc(obj) ⇒ Object



83
# File 'lib/rio/ios/generic.rb', line 83

def putc(obj) nil end

#puts(*objs) ⇒ Object



84
# File 'lib/rio/ios/generic.rb', line 84

def puts(*objs) nil end

#read(*args) ⇒ Object



85
# File 'lib/rio/ios/generic.rb', line 85

def read(*args) nil end

#readcharObject



86
# File 'lib/rio/ios/generic.rb', line 86

def readchar() nil end

#readline(sep_string = $/) ⇒ Object



87
# File 'lib/rio/ios/generic.rb', line 87

def readline(sep_string=$/) nil end

#readlines(sep_string = $/) ⇒ Object



88
# File 'lib/rio/ios/generic.rb', line 88

def readlines(sep_string=$/) [] end

#readpartial(maxlen, *args) ⇒ Object



89
# File 'lib/rio/ios/generic.rb', line 89

def readpartial(maxlen,*args)  end

#reopen(*args) ⇒ Object



90
# File 'lib/rio/ios/generic.rb', line 90

def reopen(*args) self end

#rewindObject



91
# File 'lib/rio/ios/generic.rb', line 91

def rewind() 0 end

#seekObject



92
# File 'lib/rio/ios/generic.rb', line 92

def seek() 0 end

#statObject



93
# File 'lib/rio/ios/generic.rb', line 93

def stat() nil end

#syncObject



94
# File 'lib/rio/ios/generic.rb', line 94

def sync() nil end

#sync=(v) ⇒ Object



95
# File 'lib/rio/ios/generic.rb', line 95

def sync=(v) nil end

#sysreadObject



96
# File 'lib/rio/ios/generic.rb', line 96

def sysread() 0 end

#sysseekObject



97
# File 'lib/rio/ios/generic.rb', line 97

def sysseek() 0 end

#syswriteObject



98
# File 'lib/rio/ios/generic.rb', line 98

def syswrite() 0 end

#tellObject



79
# File 'lib/rio/ios/generic.rb', line 79

def tell() nil end

#to_iObject



67
# File 'lib/rio/ios/generic.rb', line 67

def to_i() nil end

#tty?Boolean

Returns:

  • (Boolean)


74
# File 'lib/rio/ios/generic.rb', line 74

def tty?() false end

#ungetcObject



99
# File 'lib/rio/ios/generic.rb', line 99

def ungetc() nil end

#write(str) ⇒ Object



100
# File 'lib/rio/ios/generic.rb', line 100

def write(str) 0 end