Module: Kernel
- Defined in:
- lib/cocoa/sugarcube-repl/kernel.rb,
lib/android/sugarcube-repl/kernel.rb
Instance Method Summary collapse
- #adjust(*args) ⇒ Object (also: #a)
- #blink(*args) ⇒ Object
- #center(*args) ⇒ Object (also: #c)
- #collapse(*args) ⇒ Object (also: #coll)
- #down(*args) ⇒ Object (also: #d)
- #frame(*args) ⇒ Object (also: #f)
- #left(*args) ⇒ Object (also: #l)
- #origin(*args) ⇒ Object (also: #o)
- #restore(*args) ⇒ Object
- #right(*args) ⇒ Object (also: #r)
- #root(*args) ⇒ Object
- #shadow(*args) ⇒ Object (also: #h)
- #shorter(*args) ⇒ Object (also: #s)
- #size(*args) ⇒ Object (also: #z)
- #taller(*args) ⇒ Object (also: #t)
- #thinner(*args) ⇒ Object (also: #n)
- #tree(*args, &sel_blk) ⇒ Object
- #up(*args) ⇒ Object (also: #u)
- #wider(*args) ⇒ Object (also: #w)
Instance Method Details
#adjust(*args) ⇒ Object Also known as: a
3 4 5 6 7 8 9 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 3 def adjust(*args) if self.nil? super else SugarCube::Repl.adjust(*args) end end |
#blink(*args) ⇒ Object
162 163 164 165 166 167 168 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 162 def blink(*args) if self.nil? super else SugarCube::Repl.blink(*args) end end |
#center(*args) ⇒ Object Also known as: c
136 137 138 139 140 141 142 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 136 def center(*args) if self.nil? super else SugarCube::Repl.center(*args) end end |
#collapse(*args) ⇒ Object Also known as: coll
12 13 14 15 16 17 18 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 12 def collapse(*args) if self.nil? super else SugarCube::Repl.collapse(*args) end end |
#down(*args) ⇒ Object Also known as: d
73 74 75 76 77 78 79 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 73 def down(*args) if self.nil? super else SugarCube::Repl.down(*args) end end |
#frame(*args) ⇒ Object Also known as: f
37 38 39 40 41 42 43 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 37 def frame(*args) if self.nil? super else SugarCube::Repl.frame(*args) end end |
#left(*args) ⇒ Object Also known as: l
46 47 48 49 50 51 52 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 46 def left(*args) if self.nil? super else SugarCube::Repl.left(*args) end end |
#origin(*args) ⇒ Object Also known as: o
82 83 84 85 86 87 88 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 82 def origin(*args) if self.nil? super else SugarCube::Repl.origin(*args) end end |
#restore(*args) ⇒ Object
154 155 156 157 158 159 160 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 154 def restore(*args) if self.nil? super else SugarCube::Repl.restore(*args) end end |
#right(*args) ⇒ Object Also known as: r
55 56 57 58 59 60 61 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 55 def right(*args) if self.nil? super else SugarCube::Repl.right(*args) end end |
#root(*args) ⇒ Object
29 30 31 32 33 34 35 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 29 def root(*args) if self.nil? super else SugarCube::Repl.root(*args) end end |
#shadow(*args) ⇒ Object Also known as: h
145 146 147 148 149 150 151 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 145 def shadow(*args) if self.nil? super else SugarCube::Repl.shadow(*args) end end |
#shorter(*args) ⇒ Object Also known as: s
109 110 111 112 113 114 115 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 109 def shorter(*args) if self.nil? super else SugarCube::Repl.shorter(*args) end end |
#size(*args) ⇒ Object Also known as: z
127 128 129 130 131 132 133 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 127 def size(*args) if self.nil? super else SugarCube::Repl.size(*args) end end |
#taller(*args) ⇒ Object Also known as: t
118 119 120 121 122 123 124 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 118 def taller(*args) if self.nil? super else SugarCube::Repl.taller(*args) end end |
#thinner(*args) ⇒ Object Also known as: n
91 92 93 94 95 96 97 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 91 def thinner(*args) if self.nil? super else SugarCube::Repl.thinner(*args) end end |
#tree(*args, &sel_blk) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/cocoa/sugarcube-repl/kernel.rb', line 21 def tree(*args, &sel_blk) if self.nil? super else SugarCube::Repl.tree(*args, &sel_blk) end end |