autotest-notification 2.1.0 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +1 -6
- data/autotest-notification.gemspec +8 -8
- data/config/hoe.rb +2 -3
- data/config/requirements.rb +2 -2
- data/lib/autotest_notification/version.rb +1 -1
- metadata +7 -7
data/README.txt
CHANGED
@@ -10,11 +10,6 @@ This gem set the autotest (ZenTest) to send messages to software as Growl, LibNo
|
|
10
10
|
|
11
11
|
== REQUIREMENTS:
|
12
12
|
|
13
|
-
Independent of operating system you are using, you must install the ZenTest:
|
14
|
-
|
15
|
-
$ gem install ZenTest
|
16
|
-
|
17
|
-
|
18
13
|
* If you're using a Mac:
|
19
14
|
You need to have Growl and growlnotify installed on your machine.
|
20
15
|
|
@@ -70,7 +65,7 @@ Independent of operating system you are using, you must install the ZenTest:
|
|
70
65
|
|
71
66
|
== INSTALL:
|
72
67
|
|
73
|
-
$ sudo gem install
|
68
|
+
$ sudo gem install autotest-notification
|
74
69
|
|
75
70
|
Run it to let the notifier in automatic mode:
|
76
71
|
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{autotest-notification}
|
5
|
-
s.version = "2.
|
5
|
+
s.version = "2.2.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Carlos Brando", "Rodrigo Urubatan", "Alexandre da Silva", "Carlos J\303\272nior", "Davis Zanetti Cabral", "Marcos Tapaj\303\263s", "Thiago Pradi", "Oz\303\251ias Sant'ana", "Samuel Flores", "Diego Carrion", "Ernesto Nakamura"]
|
9
|
-
s.date = %q{
|
10
|
-
s.description = %q{This gem set the autotest
|
9
|
+
s.date = %q{2010-02-25}
|
10
|
+
s.description = %q{This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.}
|
11
11
|
s.email = ["autotest-notification@carlosbrando.com"]
|
12
12
|
s.executables = ["an-install", "an-uninstall", "playsound"]
|
13
13
|
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "website/index.txt"]
|
@@ -26,8 +26,8 @@ To turn off:
|
|
26
26
|
s.rdoc_options = ["--main", "README.txt"]
|
27
27
|
s.require_paths = ["lib"]
|
28
28
|
s.rubyforge_project = %q{autotest-notification}
|
29
|
-
s.rubygems_version = %q{1.3.
|
30
|
-
s.summary = %q{This gem set the autotest
|
29
|
+
s.rubygems_version = %q{1.3.5}
|
30
|
+
s.summary = %q{This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.}
|
31
31
|
s.test_files = ["test/autotest_notification/test_cygwin.rb", "test/autotest_notification/test_linux.rb", "test/autotest_notification/test_mac.rb", "test/autotest_notification/test_windows.rb", "test/test_autotest_notification.rb", "test/test_helper.rb"]
|
32
32
|
|
33
33
|
if s.respond_to? :specification_version then
|
@@ -35,14 +35,14 @@ To turn off:
|
|
35
35
|
s.specification_version = 3
|
36
36
|
|
37
37
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
38
|
-
s.add_runtime_dependency(%q<
|
38
|
+
s.add_runtime_dependency(%q<autotest>, [">= 4.2.9"])
|
39
39
|
s.add_development_dependency(%q<hoe>, [">= 2.3.3"])
|
40
40
|
else
|
41
|
-
s.add_dependency(%q<
|
41
|
+
s.add_dependency(%q<autotest>, [">= 4.2.9"])
|
42
42
|
s.add_dependency(%q<hoe>, [">= 2.3.3"])
|
43
43
|
end
|
44
44
|
else
|
45
|
-
s.add_dependency(%q<
|
45
|
+
s.add_dependency(%q<autotest>, [">= 4.2.9"])
|
46
46
|
s.add_dependency(%q<hoe>, [">= 2.3.3"])
|
47
47
|
end
|
48
48
|
end
|
data/config/hoe.rb
CHANGED
@@ -4,15 +4,14 @@ require 'autotest_notification/version'
|
|
4
4
|
|
5
5
|
AUTHOR = "Carlos Brando, Rodrigo Urubatan, Alexandre da Silva, Carlos Júnior, Davis Zanetti Cabral, Marcos Tapajós, Thiago Pradi, Ozéias Sant'ana, Samuel Flores, Diego Carrion, Ernesto Nakamura"
|
6
6
|
EMAIL = "autotest-notification@carlosbrando.com"
|
7
|
-
DESCRIPTION = "This gem set the autotest
|
7
|
+
DESCRIPTION = "This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results."
|
8
8
|
GEM_NAME = 'autotest-notification' # what ppl will type to install your gem
|
9
9
|
RUBYFORGE_PROJECT = nil # 'autotestnotific' # The unix name for your project
|
10
10
|
HOMEPATH = "http://github.com/carlosbrando/autotest-notification/"
|
11
11
|
DOWNLOAD_PATH = "http://github.com/carlosbrando/autotest-notification/tarball/master"
|
12
12
|
|
13
13
|
EXTRA_DEPENDENCIES = [
|
14
|
-
['
|
15
|
-
# ['activesupport', '>= 1.3.1']
|
14
|
+
['autotest', '>= 4.2.9']
|
16
15
|
] # An array of rubygem dependencies [name, version]
|
17
16
|
|
18
17
|
@config_file = "~/.rubyforge/user-config.yml"
|
data/config/requirements.rb
CHANGED
@@ -2,12 +2,12 @@ require 'fileutils'
|
|
2
2
|
include FileUtils
|
3
3
|
|
4
4
|
require 'rubygems'
|
5
|
-
%w[rake hoe newgem rubigen
|
5
|
+
%w[rake hoe newgem rubigen].each do |req_gem|
|
6
6
|
begin
|
7
7
|
require req_gem.downcase
|
8
8
|
rescue LoadError
|
9
9
|
puts "This Rakefile requires the '#{req_gem}' RubyGem."
|
10
|
-
puts "Installation: gem install #{req_gem}
|
10
|
+
puts "Installation: gem install #{req_gem}"
|
11
11
|
exit
|
12
12
|
end
|
13
13
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autotest-notification
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Carlos Brando, Rodrigo Urubatan, Alexandre da Silva, Carlos J\xC3\xBAnior, Davis Zanetti Cabral, Marcos Tapaj\xC3\xB3s, Thiago Pradi, Oz\xC3\xA9ias Sant'ana, Samuel Flores, Diego Carrion, Ernesto Nakamura"
|
@@ -9,18 +9,18 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-02-25 00:00:00 -03:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: autotest
|
17
17
|
type: :runtime
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
23
|
+
version: 4.2.9
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: hoe
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 2.3.3
|
34
34
|
version:
|
35
|
-
description: This gem set the autotest
|
35
|
+
description: This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
|
36
36
|
email:
|
37
37
|
- autotest-notification@carlosbrando.com
|
38
38
|
executables:
|
@@ -142,10 +142,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements: []
|
143
143
|
|
144
144
|
rubyforge_project: autotest-notification
|
145
|
-
rubygems_version: 1.3.
|
145
|
+
rubygems_version: 1.3.5
|
146
146
|
signing_key:
|
147
147
|
specification_version: 3
|
148
|
-
summary: This gem set the autotest
|
148
|
+
summary: This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
|
149
149
|
test_files:
|
150
150
|
- test/autotest_notification/test_cygwin.rb
|
151
151
|
- test/autotest_notification/test_linux.rb
|