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

Instance Method Details

#clapback(thing) {|thing| ... } ⇒ Object

yields whatever was given to it

Example:

>> clapback(2) { |n| n } => 2

Yields:

  • (thing)


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

#ghostedObject

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”)

Parameters:

  • msg (String)

Raises:

  • (L)


38
39
40
# File 'lib/glowup/l.rb', line 38

def yeet(msg)
  raise L, msg
end