Sha256: 65d038647180d402c417b12b99dc343556b0b03bca6735bb72ca089ba0916e66
Contents?: true
Size: 844 Bytes
Versions: 2
Compression:
Stored size: 844 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze module Logger ## # Informer for the Knotify notfication system used on KDE. # Doesn't need any special libraries. # class Knotify include Logging trait :present => 16 ## # Please see for more information on the API used here: # http://lukeplant.me.uk/articles.php?id=3 # # @param [String] tag # @param [Hash] args # def log(tag, *messages) present = class_trait[:present] tag = tag.to_s.capitalize messages.flatten.each do |message| system(%{dcop knotify default notify Ramaze "#{tag}" "#{message}" '' '' #{present} 0}) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ramaze-2011.01.30 | lib/ramaze/log/knotify.rb |
ramaze-2011.01 | lib/ramaze/log/knotify.rb |