Skip to content

Commit

Permalink
updated history and bumped version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmabey committed Dec 21, 2009
1 parent 670dc0f commit 0901eb2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 15 deletions.
11 changes: 9 additions & 2 deletions History.txt
@@ -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

Expand All @@ -24,7 +31,7 @@

== 0.1.3 2009-04-30

=== New features
=== New features
* PostgresSQLAdapter for AR to support the truncation strategy. (Alberto Perdomo)
=== Bufixes
* Added missing quotes around table names in truncation calls. (Michael MacDonald)
Expand Down
4 changes: 2 additions & 2 deletions VERSION.yml
@@ -1,4 +1,4 @@
---
:patch: 2
:patch: 0
:major: 0
:minor: 2
:minor: 3
26 changes: 15 additions & 11 deletions database_cleaner.gemspec
@@ -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 -*-

Gem::Specification.new do |s|
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.authors = ["Ben Mabey", "Yozhyk"]
s.date = %q{2009-08-20}
s.authors = ["Ben Mabey"]
s.date = %q{2009-12-20}
s.description = %q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.}
s.email = %q{ben@benmabey.com}
s.extra_rdoc_files = [
"LICENSE",
"README.textile"
"README.textile",
"TODO"
]
s.files = [
"History.txt",
Expand Down Expand Up @@ -40,20 +44,19 @@ Gem::Specification.new do |s|
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/bmabey/database_cleaner}
s.rdoc_options = ["--charset=UTF-8"]
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.test_files = [
"spec/spec_helper.rb",
"spec/database_cleaner/active_record/truncation_spec.rb",
"spec/database_cleaner/configuration_spec.rb",
"spec/database_cleaner/active_record/truncation_spec.rb",
"examples/lib/datamapper.rb",
"examples/lib/activerecord.rb",
"spec/spec_helper.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
Expand All @@ -66,3 +69,4 @@ Gem::Specification.new do |s|
else
end
end

0 comments on commit 0901eb2

Please sign in to comment.