public
Description: Next generation Growl support for autotest.
Homepage: http://www.bitcetera.com/products/autotest-growl
Clone URL: git://github.com/svoop/autotest-growl.git
Click here to lend your support to: autotest-growl and make a donation at www.pledgie.com !
autotest-growl / autotest-growl.gemspec
100644 56 lines (45 sloc) 2.437 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{autotest-growl}
  s.version = "0.1.7"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Sven Schwyn"]
  s.date = %q{2009-10-09}
  s.description = %q{This gem aims to improve support for Growl notification by ZenTest's autotest. It comes with a nice colored Ruby icon set and - for now - supports Cucumber by means of a workaround.}
  s.email = ["ruby@bitcetera.com"]
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt"]
  s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "autotest-growl.gemspec", "growl/growlnotify", "growl/growlnotify.com", "img/error.png", "img/failed.png", "img/info.png", "img/passed.png", "img/pending.png", "lib/autotest-growl.rb", "lib/autotest/growl.rb", "lib/autotest/result.rb", "script/console", "script/destroy", "script/generate", "spec/autotest-growl_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/rspec.rake"]
  s.homepage = %q{http://www.bitcetera.com/products/autotest-growl}
  s.post_install_message = %q{
In order to use autotest-growl, the following line has to be added to your
~/.autotest file:
 
require 'autotest/growl'
 
Make sure Growl is installed on your computer. Download it from:
 
http://growl.info (Mac OS X)
http://growlforwindows.com (Windows)
 
If Growl notifications are not always displayed, take a look at the README
for assistance.
 
For more information, feedback and bug submissions, please visit:
 
http://www.bitcetera.com/products/autotest-growl

}
  s.rdoc_options = ["--main", "README.rdoc"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{autotest-growl}
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Next generation Growl notification support for ZenTest's autotest.}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<ZenTest>, [">= 4.1.3"])
      s.add_development_dependency(%q<hoe>, [">= 2.3.3"])
    else
      s.add_dependency(%q<ZenTest>, [">= 4.1.3"])
      s.add_dependency(%q<hoe>, [">= 2.3.3"])
    end
  else
    s.add_dependency(%q<ZenTest>, [">= 4.1.3"])
    s.add_dependency(%q<hoe>, [">= 2.3.3"])
  end
end