updated history and bumped version to 0.3.0

This commit is contained in:
Ben Mabey 2009-12-20 22:19:25 -07:00
parent 670dc0f71d
commit 0901eb2c64
3 changed files with 26 additions and 15 deletions

View file

@ -1,4 +1,11 @@
0.2.x (In Git) 0.3.x (In Git)
== 0.3.0 2009-12-20
=== New features
* DataMapper 0.10.0 Compatible. (Martin Gamsjaeger)
=== Bufixes
* Postgres tables with FKs now truncate (added TRUNCADE CASCADE). (Vika - yozhyk on github)
== 0.2.3 2009-05-30 == 0.2.3 2009-05-30
@ -24,7 +31,7 @@
== 0.1.3 2009-04-30 == 0.1.3 2009-04-30
=== New features === New features
* PostgresSQLAdapter for AR to support the truncation strategy. (Alberto Perdomo) * PostgresSQLAdapter for AR to support the truncation strategy. (Alberto Perdomo)
=== Bufixes === Bufixes
* Added missing quotes around table names in truncation calls. (Michael MacDonald) * Added missing quotes around table names in truncation calls. (Michael MacDonald)

View file

@ -1,4 +1,4 @@
--- ---
:patch: 2 :patch: 0
:major: 0 :major: 0
:minor: 2 :minor: 3

View file

@ -1,17 +1,21 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{database_cleaner} s.name = %q{database_cleaner}
s.version = "0.2.4" s.version = "0.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ben Mabey", "Yozhyk"] s.authors = ["Ben Mabey"]
s.date = %q{2009-08-20} s.date = %q{2009-12-20}
s.description = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.} s.description = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.}
s.email = %q{ben@benmabey.com} s.email = %q{ben@benmabey.com}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"LICENSE", "LICENSE",
"README.textile" "README.textile",
"TODO"
] ]
s.files = [ s.files = [
"History.txt", "History.txt",
@ -40,20 +44,19 @@ Gem::Specification.new do |s|
"spec/spec.opts", "spec/spec.opts",
"spec/spec_helper.rb" "spec/spec_helper.rb"
] ]
s.has_rdoc = true
s.homepage = %q{http://github.com/bmabey/database_cleaner} s.homepage = %q{http://github.com/bmabey/database_cleaner}
s.rdoc_options = ["--charset=UTF-8"] s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.2} s.rubygems_version = %q{1.3.5}
s.summary = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.} s.summary = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.}
s.test_files = [ s.test_files = [
"spec/spec_helper.rb", "spec/database_cleaner/active_record/truncation_spec.rb",
"spec/database_cleaner/configuration_spec.rb", "spec/database_cleaner/configuration_spec.rb",
"spec/database_cleaner/active_record/truncation_spec.rb", "spec/spec_helper.rb",
"examples/lib/datamapper.rb",
"examples/lib/activerecord.rb",
"examples/features/step_definitions/example_steps.rb", "examples/features/step_definitions/example_steps.rb",
"examples/features/support/env.rb" "examples/features/support/env.rb",
"examples/lib/activerecord.rb",
"examples/lib/datamapper.rb"
] ]
if s.respond_to? :specification_version then if s.respond_to? :specification_version then
@ -66,3 +69,4 @@ Gem::Specification.new do |s|
else else
end end
end end