Sha256: df63284e2a8db97adcb82fcd58073806d03a42b8f3f8a3909c086959655b2b3e
Contents?: true
Size: 1018 Bytes
Versions: 3
Compression:
Stored size: 1018 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "notifier/version" Gem::Specification.new do |s| s.name = "notifier" s.version = Notifier::Version::STRING s.platform = Gem::Platform::RUBY s.authors = ["Nando Vieira"] s.email = ["fnando.vieira@gmail.com"] s.homepage = "http://rubygems.org/gems/notifier" s.summary = "Send system notifications on several platforms with a simple and unified API. Currently supports Growl, Libnotify, OSD, KDE (Knotify and Kdialog) and Snarl" s.description = s.summary s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.requirements << "Growl, Libnotify, OSD, KDE (Knotify and Kdialog) or Snarl" s.add_development_dependency "test-unit" s.add_development_dependency "mocha" s.add_development_dependency "rake" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
notifier-0.2.1 | notifier.gemspec |
notifier-0.2.0 | notifier.gemspec |
notifier-0.1.5 | notifier.gemspec |