master/spec/support/gems_helper.rb

13 lines
158 B
Ruby
Raw Normal View History

def growl_installed?
require 'growl'
true
rescue LoadError
false
end
def libnotify_installed?
require 'libnotify'
true
rescue LoadError
false
end