autotest-notification 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ 2.2.1
2
+ * Fixed an-install binary when is necessary to make a copy of an older .autotest file.
3
+
4
+ 2.2.0
5
+ * Removed dependency of ZenTest and began using the autotest gem in its place.
6
+
1
7
  2.1.0
2
8
  * Added support for cucumber (ernestonakamura)
3
9
 
@@ -2,13 +2,13 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{autotest-notification}
5
- s.version = "2.2.0"
5
+ s.version = "2.2.1"
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{2010-02-25}
9
+ s.date = %q{2010-04-06}
10
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
- s.email = ["autotest-notification@carlosbrando.com"]
11
+ s.email = ["eduardobrando@gmail.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"]
14
14
  s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "autotest-notification.gemspec", "bin/an-install", "bin/an-uninstall", "bin/playsound", "config/hoe.rb", "config/requirements.rb", "images/buuf/fail.png", "images/buuf/pass.png", "images/buuf/pending.png", "images/doom/doom_0.png", "images/doom/doom_1.png", "images/doom/doom_2.png", "images/doom/doom_3.png", "images/doom/doom_4.png", "images/doom/doom_5.png", "images/doom/doom_6.png", "images/fail.png", "images/pass.png", "images/pending.png", "lib/autotest_notification.rb", "lib/autotest_notification/buuf.rb", "lib/autotest_notification/cygwin.rb", "lib/autotest_notification/doom.rb", "lib/autotest_notification/linux.rb", "lib/autotest_notification/mac.rb", "lib/autotest_notification/version.rb", "lib/autotest_notification/windows.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "sounds/doom/0.wav", "sounds/doom/1.wav", "sounds/doom/2.wav", "sounds/doom/3.wav", "sounds/doom/4.wav", "sounds/doom/5.wav", "sounds/doom/6.wav", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "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", "website/index.html", "website/index.txt", "website/javascripts/rounded_corners_lite.inc.js", "website/stylesheets/screen.css", "website/template.html.erb"]
@@ -26,7 +26,7 @@ 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.5}
29
+ s.rubygems_version = %q{1.3.6}
30
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
 
data/bin/an-install CHANGED
@@ -11,6 +11,7 @@ rescue LoadError
11
11
  end
12
12
 
13
13
  require 'optparse'
14
+ require 'fileutils'
14
15
 
15
16
  # NOTE: the option -p/--path= is given as an example, and should probably be replaced in your application.
16
17
 
data/config/hoe.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  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
- EMAIL = "autotest-notification@carlosbrando.com"
6
+ EMAIL = "eduardobrando@gmail.com"
7
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
@@ -2,7 +2,7 @@ module AutotestNotification #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 2
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autotest-notification
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ prerelease: false
5
+ segments:
6
+ - 2
7
+ - 2
8
+ - 1
9
+ version: 2.2.1
5
10
  platform: ruby
6
11
  authors:
7
12
  - "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,32 +14,68 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-02-25 00:00:00 -03:00
17
+ date: 2010-04-06 00:00:00 -03:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: autotest
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - ">="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 4
29
+ - 2
30
+ - 9
23
31
  version: 4.2.9
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
- name: hoe
35
+ name: rubyforge
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 2
43
+ - 0
44
+ - 4
45
+ version: 2.0.4
46
+ type: :development
47
+ version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: gemcutter
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ - 4
58
+ - 1
59
+ version: 0.4.1
27
60
  type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
61
+ version_requirements: *id003
62
+ - !ruby/object:Gem::Dependency
63
+ name: hoe
64
+ prerelease: false
65
+ requirement: &id004 !ruby/object:Gem::Requirement
30
66
  requirements:
31
67
  - - ">="
32
68
  - !ruby/object:Gem::Version
33
- version: 2.3.3
34
- version:
69
+ segments:
70
+ - 2
71
+ - 5
72
+ - 0
73
+ version: 2.5.0
74
+ type: :development
75
+ version_requirements: *id004
35
76
  description: This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
36
77
  email:
37
- - autotest-notification@carlosbrando.com
78
+ - eduardobrando@gmail.com
38
79
  executables:
39
80
  - an-install
40
81
  - an-uninstall
@@ -131,18 +172,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
131
172
  requirements:
132
173
  - - ">="
133
174
  - !ruby/object:Gem::Version
175
+ segments:
176
+ - 0
134
177
  version: "0"
135
- version:
136
178
  required_rubygems_version: !ruby/object:Gem::Requirement
137
179
  requirements:
138
180
  - - ">="
139
181
  - !ruby/object:Gem::Version
182
+ segments:
183
+ - 0
140
184
  version: "0"
141
- version:
142
185
  requirements: []
143
186
 
144
187
  rubyforge_project: autotest-notification
145
- rubygems_version: 1.3.5
188
+ rubygems_version: 1.3.6
146
189
  signing_key:
147
190
  specification_version: 3
148
191
  summary: This gem set the autotest to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.