class YouBuggin
Public Class Methods
here()
click to toggle source
# File lib/you_buggin.rb, line 8 def self.here puts "######################" puts "###### Here I am #####" puts "######################" end
pry()
click to toggle source
# File lib/you_buggin.rb, line 14 def self.pry binding.pry end
say(text)
click to toggle source
# File lib/you_buggin.rb, line 4 def self.say(text) puts "-------------------->> #{text}" end