migration_test_helper 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
16
16
  rdoc.rdoc_files.include('lib/**/*.rb')
17
17
  end
18
18
 
19
- GEM_VERSION = '1.3.1'
19
+ GEM_VERSION = '1.3.2'
20
20
 
21
21
  Hoe.new('migration_test_helper',GEM_VERSION) do |p|
22
22
  p.author = "Micah Alles"
@@ -33,6 +33,7 @@ test database.
33
33
  p.gem_files = FileList["{test,lib,tasks}/**/*"] + %w|LICENSE README Rakefile init.rb install.rb uninstall.rb|
34
34
 
35
35
  p.changes = <<-EOS
36
+ * fixed bug where test:migration was calling itself, thanks Patrick ;)
36
37
  EOS
37
38
  p.rubyforge_name = 'migrationtest'
38
39
  end
@@ -8,10 +8,10 @@ namespace :test do
8
8
  end
9
9
  Rake::Task['test:migrations'].comment = "Run the migration tests in test/migration"
10
10
 
11
- task :migration => 'test:migration'
11
+ task :migration => 'test:migrations'
12
12
  end
13
13
 
14
14
  task :test do
15
- Rake::Task['test:migration'].invoke rescue got_error = true
15
+ Rake::Task['test:migrations'].invoke rescue got_error = true
16
16
  raise "Test failures" if got_error
17
17
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: migration_test_helper
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.3.1
7
- date: 2007-02-27 00:00:00 -05:00
6
+ version: 1.3.2
7
+ date: 2007-03-31 00:00:00 -04:00
8
8
  summary: A Rails plugin for testing migrations
9
9
  require_paths:
10
10
  - lib