Sha256: 221d151ba34220e6a257acbacd421b3887fbd27e3a674058d7a8e71c0fc37981
Contents?: true
Size: 818 Bytes
Versions: 2
Compression:
Stored size: 818 Bytes
Contents
# are we on OSX or not? begin require 'osx/foundation' OSX.require_framework '/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework' $osx = true rescue MissingSourceFile # this is to not fail when running on a non-Mac end module Rerun module System def osx? $osx end # do we have growl or not? def has_growl? growlcmd != "" end def growlcmd `which growlnotify`.chomp end def app_name # todo: make sure this works in non-Mac and non-Unix environments File.expand_path(".").gsub(/^.*\//, '').capitalize end def growl(title, body, background = true) s = "#{growlcmd} -n \"#{app_name}\" -m \"#{body}\" \"#{app_name} #{title}\"" s += " &" if background `#{s}` end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
alexch-rerun-0.2.1 | lib/system.rb |
rerun-0.2.1 | lib/system.rb |