module Blahblah

Constants

SENTENCES

Public Class Methods

[](i) click to toggle source
# File lib/blahblah.rb, line 76
def self.[] i
  SENTENCES[i % SENTENCES.size]
end
blah() click to toggle source
# File lib/blahblah.rb, line 72
def self.blah
  self.random
end
random() click to toggle source
# File lib/blahblah.rb, line 68
def self.random
  SENTENCES.sample
end