svoop-autotest-growl 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/PostInstall.txt +9 -1
- data/README.rdoc +2 -2
- data/Rakefile +1 -1
- data/autotest-growl.gemspec +65 -0
- data/lib/autotest-growl.rb +1 -1
- metadata +11 -3
data/PostInstall.txt
CHANGED
@@ -12,4 +12,12 @@ for assistance.
|
|
12
12
|
|
13
13
|
For more information, feedback and bug submissions, please visit:
|
14
14
|
|
15
|
-
|
15
|
+
http://www.bitcetera.com/products/autotest-growl
|
16
|
+
|
17
|
+
+-------------------------------------------------------------------------+
|
18
|
+
| IMPORTANT NOTE FOR UPGRADES FROM VERSION 0.1.0 |
|
19
|
+
| ZenTest no longer comes with bundled Growl support and therefore the |
|
20
|
+
| require in your ~/.autotest must not contain the absolute path to this |
|
21
|
+
| gem anymore. Please update your ~/.autotest to contain the require line |
|
22
|
+
| mentioned above. |
|
23
|
+
+-------------------------------------------------------------------------+
|
data/README.rdoc
CHANGED
@@ -15,14 +15,14 @@ cycles.
|
|
15
15
|
|
16
16
|
=== Ruby 1.9.1 Note
|
17
17
|
|
18
|
-
For the moment, autotest
|
18
|
+
For the moment, autotest growl doesn't seem to work on Ruby 1.9.1. Fixing this
|
19
19
|
might take a while though as autotest itself is currently misbehaving on Ruby
|
20
20
|
1.9 - at least on my setup.
|
21
21
|
|
22
22
|
== REQUIREMENTS:
|
23
23
|
|
24
24
|
* Growl >= 1.1.4
|
25
|
-
* ZenTest >= 4.0
|
25
|
+
* ZenTest >= 4.1.0
|
26
26
|
|
27
27
|
== INSTALL:
|
28
28
|
|
data/Rakefile
CHANGED
@@ -11,7 +11,7 @@ $hoe = Hoe.new('autotest-growl', AutotestGrowl::VERSION) do |p|
|
|
11
11
|
p.post_install_message = "\n\e[1;32m" + File.read('PostInstall.txt') + "\e[0;30m\n"
|
12
12
|
p.rubyforge_name = p.name
|
13
13
|
p.extra_deps = [
|
14
|
-
['ZenTest','>= 4.
|
14
|
+
['ZenTest','>= 4.1.0'],
|
15
15
|
]
|
16
16
|
p.extra_dev_deps = [
|
17
17
|
['newgem', ">= #{::Newgem::VERSION}"]
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{autotest-growl}
|
5
|
+
s.version = "0.1.1"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Sven Schwyn"]
|
9
|
+
s.date = %q{2009-06-03}
|
10
|
+
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.}
|
11
|
+
s.email = ["ruby@bitcetera.com"]
|
12
|
+
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc"]
|
13
|
+
s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.rdoc", "Rakefile", "autotest-growl.gemspec", "growl/growlnotify", "img/error.png", "img/failed.png", "img/passed.png", "img/pending.png", "lib/autotest-growl.rb", "lib/autotest/growl.rb", "script/console", "script/destroy", "script/generate", "spec/autotest-growl_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/rspec.rake"]
|
14
|
+
s.homepage = %q{http://www.bitcetera.com/products/autotest-growl}
|
15
|
+
s.post_install_message = %q{
|
16
|
+
[1;32mIn order to use autotest-growl, the following line has to be added to your
|
17
|
+
~/.autotest file:
|
18
|
+
|
19
|
+
require 'autotest/growl'
|
20
|
+
|
21
|
+
Make sure Growl is installed on your computer. Download it from:
|
22
|
+
|
23
|
+
http://growl.info
|
24
|
+
|
25
|
+
If Growl notifications are not always displayed, take a look at the README
|
26
|
+
for assistance.
|
27
|
+
|
28
|
+
For more information, feedback and bug submissions, please visit:
|
29
|
+
|
30
|
+
http://www.bitcetera.com/products/autotest-growl
|
31
|
+
|
32
|
+
+-------------------------------------------------------------------------+
|
33
|
+
| IMPORTANT NOTE FOR UPGRADES FROM VERSION 0.1.0 |
|
34
|
+
| ZenTest no longer comes with bundled Growl support and therefore the |
|
35
|
+
| require in your ~/.autotest must not contain the absolute path to this |
|
36
|
+
| gem anymore. Please update your ~/.autotest to contain the require line |
|
37
|
+
| mentioned above. |
|
38
|
+
+-------------------------------------------------------------------------+
|
39
|
+
[0;30m
|
40
|
+
}
|
41
|
+
s.rdoc_options = ["--main", "README.rdoc"]
|
42
|
+
s.require_paths = ["lib"]
|
43
|
+
s.rubyforge_project = %q{autotest-growl}
|
44
|
+
s.rubygems_version = %q{1.3.3}
|
45
|
+
s.summary = %q{Next generation Growl notification support for ZenTest's autotest.}
|
46
|
+
|
47
|
+
if s.respond_to? :specification_version then
|
48
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
49
|
+
s.specification_version = 3
|
50
|
+
|
51
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
52
|
+
s.add_runtime_dependency(%q<ZenTest>, [">= 4.1.0"])
|
53
|
+
s.add_development_dependency(%q<newgem>, [">= 1.4.1"])
|
54
|
+
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<ZenTest>, [">= 4.1.0"])
|
57
|
+
s.add_dependency(%q<newgem>, [">= 1.4.1"])
|
58
|
+
s.add_dependency(%q<hoe>, [">= 1.8.0"])
|
59
|
+
end
|
60
|
+
else
|
61
|
+
s.add_dependency(%q<ZenTest>, [">= 4.1.0"])
|
62
|
+
s.add_dependency(%q<newgem>, [">= 1.4.1"])
|
63
|
+
s.add_dependency(%q<hoe>, [">= 1.8.0"])
|
64
|
+
end
|
65
|
+
end
|
data/lib/autotest-growl.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: svoop-autotest-growl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Schwyn
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 4.
|
23
|
+
version: 4.1.0
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: newgem
|
@@ -60,6 +60,7 @@ files:
|
|
60
60
|
- PostInstall.txt
|
61
61
|
- README.rdoc
|
62
62
|
- Rakefile
|
63
|
+
- autotest-growl.gemspec
|
63
64
|
- growl/growlnotify
|
64
65
|
- img/error.png
|
65
66
|
- img/failed.png
|
@@ -85,7 +86,14 @@ post_install_message: "\n\
|
|
85
86
|
If Growl notifications are not always displayed, take a look at the README\n\
|
86
87
|
for assistance.\n\n\
|
87
88
|
For more information, feedback and bug submissions, please visit:\n\n\
|
88
|
-
|
89
|
+
http://www.bitcetera.com/products/autotest-growl\n\n\
|
90
|
+
+-------------------------------------------------------------------------+\n\
|
91
|
+
| IMPORTANT NOTE FOR UPGRADES FROM VERSION 0.1.0 |\n\
|
92
|
+
| ZenTest no longer comes with bundled Growl support and therefore the |\n\
|
93
|
+
| require in your ~/.autotest must not contain the absolute path to this |\n\
|
94
|
+
| gem anymore. Please update your ~/.autotest to contain the require line |\n\
|
95
|
+
| mentioned above. |\n\
|
96
|
+
+-------------------------------------------------------------------------+\n\
|
89
97
|
\e[0;30m\n"
|
90
98
|
rdoc_options:
|
91
99
|
- --main
|