newgem 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 0.8.1 - Generated test file's class name now prefixed with Test, instead of suffixed
2
+
1
3
  0.8.0 - Uses hoe itself - less hypocritical
2
4
  - Generated test files use name 'test_<gemname>.rb' instead of '<gemname>_test.rb' to support
3
5
  ZenTest's autotest expectations of naming. Manifest updated too.
@@ -2,7 +2,7 @@ module Newgem #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 8
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/templates/test.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.dirname(__FILE__) + '/test_helper.rb'
2
2
 
3
- class #{module_name}Test < Test::Unit::TestCase
3
+ class Test#{module_name} < Test::Unit::TestCase
4
4
 
5
5
  def setup
6
6
  end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: newgem
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.8.0
6
+ version: 0.8.1
7
7
  date: 2007-03-16 00:00:00 +01:00
8
8
  summary: Make your own gems at home
9
9
  require_paths: