module Faceme

Constants

VERSION

Public Class Methods

angry() click to toggle source
# File lib/faceme.rb, line 24
def self.angry
      return "( ≧Д≦)"
end
angry2() click to toggle source
# File lib/faceme.rb, line 28
def self.angry2
      return "(#`Д´)"
end
angry3() click to toggle source
# File lib/faceme.rb, line 32
def self.angry3
      return "(*´>д<)"
end
chill() click to toggle source
# File lib/faceme.rb, line 53
def self.chill
      return "Σ(=ω= ;)"
end
devious() click to toggle source
# File lib/faceme.rb, line 40
def self.devious
  return "( ` ω ´ )"
end
disapproval() click to toggle source
# File lib/faceme.rb, line 12
def self.disapproval
      return "ಠ_ಠ"
end
happy() click to toggle source
# File lib/faceme.rb, line 57
def self.happy
      return "(::^ω^::)"
end
lenny() click to toggle source
# File lib/faceme.rb, line 8
def self.lenny
      return "( ͡° ͜ʖ ͡°)"
end
random() click to toggle source
# File lib/faceme.rb, line 61
def self.random
  faces = [happy, chill, twoface, wave, devious, sweatdrop, angry, angry2, angry3, unflip, tableflip, disapproval, lenny]
  return faces.sample
end
riot(words) click to toggle source
# File lib/faceme.rb, line 4
def self.riot(words)
  return      "༼ つ ◕_◕ ༽つ#{words}༼ つ ◕_◕ ༽つ"
end
sweatdrop() click to toggle source
# File lib/faceme.rb, line 36
def self.sweatdrop
  return "(; ̄Д ̄)"
end
tableflip() click to toggle source
# File lib/faceme.rb, line 16
def self.tableflip
      return "(╯°□°)╯︵ ┻━┻"
end
twoface() click to toggle source
# File lib/faceme.rb, line 48
def self.twoface
  return "(゚Д゚≡゚Д゚)"
end
unflip() click to toggle source
# File lib/faceme.rb, line 20
def self.unflip
      return "┬─┬ ノ( ゜-゜ノ)"
end
wave() click to toggle source
# File lib/faceme.rb, line 44
def self.wave
  return "(=゚ω゚)ノ"
end