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 CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.1.6 2009-08-12
2
+
3
+ * 2 minor improvements
4
+ * Reset the postinstall text color to previous (Konstantin Haase)
5
+ * Ruby 1.9 compatibility
6
+
1
7
  == 0.1.5 2009-07-27
2
8
 
3
9
  * 1 major improvement
data/README.rdoc CHANGED
@@ -152,6 +152,7 @@ Thanks to the following folks who have contributed to this project:
152
152
  * Michael Moen
153
153
  * Graham Savage
154
154
  * Karl O'Keeffe
155
+ * Konstantin Haase
155
156
 
156
157
  == LICENSE:
157
158
 
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
- # self.changes = self.paragraphs_of("History.txt", 0..1).join("\n\n")
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'],
@@ -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"
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-07-27}
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
+ 
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.4}
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
@@ -25,9 +25,9 @@ class Result
25
25
  # Determine the testing framework used.
26
26
  def framework
27
27
  case
28
- when @numbers['test']: 'test-unit'
29
- when @numbers['example']: 'rspec'
30
- when @numbers['scenario']: 'cucumber'
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
 
@@ -5,6 +5,6 @@ require File.join(File.dirname(__FILE__), 'autotest', 'growl')
5
5
 
6
6
  module AutotestGrowl
7
7
 
8
- VERSION = '0.1.5'
8
+ VERSION = '0.1.6'
9
9
 
10
10
  end
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/testli.rb'}"
9
- puts "Loading testli gem"
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.5
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-07-27 00:00:00 +02:00
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[0;30m\n"
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.4
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.