mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
updated history and bumped version to 0.3.0
This commit is contained in:
parent
670dc0f71d
commit
0901eb2c64
3 changed files with 26 additions and 15 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
---
|
||||
:patch: 2
|
||||
:patch: 0
|
||||
:major: 0
|
||||
:minor: 2
|
||||
:minor: 3
|
||||
|
|
|
@ -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",
|
||||
|
@ -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
|
||||
|
@ -66,3 +69,4 @@ Gem::Specification.new do |s|
|
|||
else
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue