Changeset 319
- Timestamp:
- 04/17/08 21:38:42 (3 months ago)
- Files:
-
- rubygems/spec_converter/trunk/CHANGELOG (moved) (moved from rubygems/spec_converter/trunk/history.txt) (1 diff)
- rubygems/spec_converter/trunk/email.txt (deleted)
- rubygems/spec_converter/trunk/Manifest (added)
- rubygems/spec_converter/trunk/Manifest.txt (deleted)
- rubygems/spec_converter/trunk/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
rubygems/spec_converter/trunk/CHANGELOG
r183 r319 1 == 0.0.4 2 * added history.txt to track things -- is there some way to do this easily and automatically via trac change logs? 3 * added conversion for ActionController::TestCase 4 * added conversion for ActiveSupport::TestCase 5 * move from rubyforge project spec-converter to thinkrelevance package spec_converter 1 v0.5. converting to echoe for gem-ing 6 2 7 == 0.0.3 1/19/2008 8 * added more assert -> should conversions 3 v0.0.4. added history.txt to track things -- is there some way to do this easily and automatically via trac change logs? ; added conversion for ActionController::TestCase ; added conversion for ActiveSupport::TestCase ; move from rubyforge project spec-converter to thinkrelevance package spec_converter 4 5 v0.0.3. added more assert -> should conversions rubygems/spec_converter/trunk/Rakefile
r184 r319 2 2 require 'rake/testtask' 3 3 require 'rubygems' 4 require 'hoe'5 4 require 'lib/spec_converter' 6 5 require 'rcov/rcovtask' 6 require 'echoe' 7 7 8 Hoe.new('spec_converter', SpecConverter::VERSION) do |p|8 Echoe.new("spec_converter") do |p| 9 9 p.rubyforge_name = "thinkrelevance" 10 10 p.description = "Convert your tests to test/spec specs. See http://opensource.thinkrelevance.com/wiki/spec_converter for details." 11 p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")12 11 p.name = 'spec_converter' 13 12 p.summary = "Convert your tests to test/spec specs"
