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.



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

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

Instance Method Details

#<<(obj) ⇒ Object



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

def <<(obj) self end

#binmodeObject



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

def binmode() self end

#callstr(func, *args) ⇒ Object



113
114
115
# File 'lib/rio/ios/generic.rb', line 113

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

#closeObject



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

def close() nil end

#close_readObject



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

def close_read() nil end

#close_writeObject



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

def close_write() nil end

#closed?Boolean

Returns:

  • (Boolean)


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

def closed?() true end

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



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

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

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



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

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

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



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

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

#eof?Boolean

Returns:

  • (Boolean)


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

def eof?() true end

#fcntl(integer_cmd, arg) ⇒ Object



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

def fcntl(integer_cmd,arg) nil end

#filenoObject



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

def fileno() nil end

#flushObject



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

def flush() self end

#fsyncObject



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

def fsync() nil end

#getcObject



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

def getc() nil end

#gets(sep_string = $/) ⇒ Object



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

def gets(sep_string=$/) nil end

#ioctl(integer_cmd, arg) ⇒ Object



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

def ioctl(integer_cmd,arg) nil end

#isattyObject



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

def isatty() false end

#linenoObject



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

def lineno() 0 end

#lineno=(a) ⇒ Object



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

def lineno=(a) nil end

#pidObject



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

def pid() nil end

#posObject



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

def pos() nil end

#pos=(v) ⇒ Object



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

def pos=(v) self.pos end


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

def print(*objs) nil end

#printf(format, *objs) ⇒ Object



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

def printf(format,*objs) nil end

#putc(obj) ⇒ Object



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

def putc(obj) nil end

#puts(*objs) ⇒ Object



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

def puts(*objs) nil end

#read(*args) ⇒ Object



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

def read(*args) nil end

#readcharObject



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

def readchar() nil end

#readline(sep_string = $/) ⇒ Object



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

def readline(sep_string=$/) nil end

#readlines(sep_string = $/) ⇒ Object



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

def readlines(sep_string=$/) [] end

#readpartial(maxlen, *args) ⇒ Object



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

def readpartial(maxlen,*args)  end

#reopen(*args) ⇒ Object



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

def reopen(*args) self end

#rewindObject



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

def rewind() 0 end

#seekObject



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

def seek() 0 end

#statObject



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

def stat() nil end

#syncObject



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

def sync() nil end

#sync=(v) ⇒ Object



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

def sync=(v) nil end

#sysreadObject



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

def sysread() 0 end

#sysseekObject



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

def sysseek() 0 end

#syswriteObject



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

def syswrite() 0 end

#tellObject



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

def tell() nil end

#to_iObject



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

def to_i() nil end

#tty?Boolean

Returns:

  • (Boolean)


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

def tty?() false end

#ungetcObject



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

def ungetc() nil end

#write(str) ⇒ Object



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

def write(str) 0 end