autotest-growl 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/README.rdoc +1 -0
- data/Rakefile +1 -2
- data/autotest-growl.gemspec +4 -4
- data/lib/autotest/result.rb +3 -3
- data/lib/autotest-growl.rb +1 -1
- data/script/console +2 -2
- metadata +4 -4
data/History.txt
CHANGED
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -13,8 +13,7 @@ $hoe = Hoe.spec 'autotest-growl' do
|
|
13
13
|
self.summary = %q{Next generation Growl notification support for ZenTest's autotest.}
|
14
14
|
self.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.}
|
15
15
|
self.url = %q{http://www.bitcetera.com/products/autotest-growl}
|
16
|
-
|
17
|
-
self.post_install_message = "\n\e[1;32m" + File.read('PostInstall.txt') + "\e[0;30m\n"
|
16
|
+
self.post_install_message = "\n\e[1;32m" + File.read('PostInstall.txt') + "\e[0m\n"
|
18
17
|
self.rubyforge_name = self.name
|
19
18
|
self.extra_deps = [
|
20
19
|
['ZenTest','>= 4.1.3'],
|
data/autotest-growl.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{autotest-growl}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.6"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Sven Schwyn"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-08-12}
|
10
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
11
|
s.email = ["ruby@bitcetera.com"]
|
12
12
|
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt"]
|
@@ -29,12 +29,12 @@ for assistance.
|
|
29
29
|
For more information, feedback and bug submissions, please visit:
|
30
30
|
|
31
31
|
http://www.bitcetera.com/products/autotest-growl
|
32
|
-
[
|
32
|
+
[0m
|
33
33
|
}
|
34
34
|
s.rdoc_options = ["--main", "README.rdoc"]
|
35
35
|
s.require_paths = ["lib"]
|
36
36
|
s.rubyforge_project = %q{autotest-growl}
|
37
|
-
s.rubygems_version = %q{1.3.
|
37
|
+
s.rubygems_version = %q{1.3.5}
|
38
38
|
s.summary = %q{Next generation Growl notification support for ZenTest's autotest.}
|
39
39
|
|
40
40
|
if s.respond_to? :specification_version then
|
data/lib/autotest/result.rb
CHANGED
@@ -25,9 +25,9 @@ class Result
|
|
25
25
|
# Determine the testing framework used.
|
26
26
|
def framework
|
27
27
|
case
|
28
|
-
when @numbers['test']
|
29
|
-
when @numbers['example']
|
30
|
-
when @numbers['scenario']
|
28
|
+
when @numbers['test'] then 'test-unit'
|
29
|
+
when @numbers['example'] then 'rspec'
|
30
|
+
when @numbers['scenario'] then 'cucumber'
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
data/lib/autotest-growl.rb
CHANGED
data/script/console
CHANGED
@@ -5,6 +5,6 @@ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
|
|
5
5
|
libs = " -r irb/completion"
|
6
6
|
# Perhaps use a console_lib to store any extra methods I may want available in the cosole
|
7
7
|
# libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
|
8
|
-
libs << " -r #{File.dirname(__FILE__) + '/../lib/
|
9
|
-
puts "Loading
|
8
|
+
libs << " -r #{File.dirname(__FILE__) + '/../lib/autotest/growl.rb'}"
|
9
|
+
puts "Loading autotest-growl gem"
|
10
10
|
exec "#{irb} #{libs} --simple-prompt"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autotest-growl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Schwyn
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-08-12 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -82,7 +82,7 @@ post_install_message: "\n\
|
|
82
82
|
for assistance.\n\n\
|
83
83
|
For more information, feedback and bug submissions, please visit:\n\n\
|
84
84
|
http://www.bitcetera.com/products/autotest-growl\n\
|
85
|
-
\e[
|
85
|
+
\e[0m\n"
|
86
86
|
rdoc_options:
|
87
87
|
- --main
|
88
88
|
- README.rdoc
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
requirements: []
|
104
104
|
|
105
105
|
rubyforge_project: autotest-growl
|
106
|
-
rubygems_version: 1.3.
|
106
|
+
rubygems_version: 1.3.5
|
107
107
|
signing_key:
|
108
108
|
specification_version: 3
|
109
109
|
summary: Next generation Growl notification support for ZenTest's autotest.
|