class Dutchman::Application

Attributes

name[R]

Public Class Methods

new(params) click to toggle source
# File lib/dutchman/application.rb, line 5
def initialize(params)
  @name = params.delete(:name)
end

Public Instance Methods

write(text) click to toggle source
# File lib/dutchman/application.rb, line 11
def write(text)
  _write(name,text,:moderate)
end

Private Instance Methods

_write(name,text,speed) click to toggle source
# File lib/dutchman/application.rb, line 17
def _write(name,text,speed)
  GhostWriter.write(application: name, text: text,speed: speed)
end