class Command
Attributes
lang[R]
Public Class Methods
new(lang=:en)
click to toggle source
# File lib/freshmind.rb, line 6 def initialize(lang=:en) @lang = lang end
Public Instance Methods
commands()
click to toggle source
# File lib/freshmind.rb, line 14 def commands return "оплопл" if lang == :ru return "brlbrl" if lang == :en end
list()
click to toggle source
# File lib/freshmind.rb, line 10 def list (commands*100).split("").sample(300) end