class ThymePluginBell

Public Class Methods

new(thyme, options={}) click to toggle source
# File lib/thyme_verbose/plugin_bell.rb, line 3
def initialize(thyme, options={})
end

Public Instance Methods

after(seconds_left) click to toggle source

Hooks

# File lib/thyme_verbose/plugin_bell.rb, line 8
def after(seconds_left)
  bell
end

Private Instance Methods

bell() click to toggle source
# File lib/thyme_verbose/plugin_bell.rb, line 14
def bell
  puts "\a"
end