Top Level Namespace
Defined Under Namespace
Modules: Aura, Demure Classes: L, Lowkey
Constant Summary collapse
- NO_CAP =
true
true- CAP =
false
false- ON_GOD =
true
true
Instance Method Summary collapse
-
#clapback(thing) {|thing| ... } ⇒ Object
yields whatever was given to it.
-
#drop(thing) ⇒ Object
returns whatever was given to it.
-
#ghosted ⇒ Object
returns [Nil].
-
#its_giving(thing) ⇒ Object
returns whatever was given to it.
-
#split(thing) ⇒ Object
returns whatever was given to it.
-
#yeet(msg) ⇒ Object
Example:.
Instance Method Details
#clapback(thing) {|thing| ... } ⇒ Object
yields whatever was given to it
Example:
>> clapback(2) { |n| n } => 2
49 50 51 |
# File 'lib/glowup.rb', line 49 def clapback(thing) yield thing end |
#drop(thing) ⇒ Object
returns whatever was given to it
Example:
>> drop(2)
> 2
22 23 24 |
# File 'lib/glowup.rb', line 22 def drop(thing) thing end |
#ghosted ⇒ Object
returns [Nil]
11 12 13 |
# File 'lib/glowup.rb', line 11 def ghosted nil end |
#its_giving(thing) ⇒ Object
returns whatever was given to it
Example:
>> its_giving(2) => 2
31 32 33 |
# File 'lib/glowup.rb', line 31 def its_giving(thing) thing end |
#split(thing) ⇒ Object
returns whatever was given to it
Example:
>> split(2) => 2
40 41 42 |
# File 'lib/glowup.rb', line 40 def split(thing) thing end |
#yeet(msg) ⇒ Object
Example:
>> yeet(“my msg”)
38 39 40 |
# File 'lib/glowup/l.rb', line 38 def yeet(msg) raise L, msg end |