diff --git a/History.txt b/History.txt index 37246fc..f3a3531 100644 --- a/History.txt +++ b/History.txt @@ -1,6 +1,9 @@ -(In Git) +0.2.x (In Git) +== 0.2.2 2009-05-08 === Bufixes + * Added proper gemspec description and summary. (Ben Mabey, thanks to Martin Gamsjaeger) + === New features == 0.2.1 2009-05-08 diff --git a/Rakefile b/Rakefile index ed6c185..8228022 100644 --- a/Rakefile +++ b/Rakefile @@ -4,10 +4,10 @@ begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "database_cleaner" - s.summary = %Q{TODO} + s.summary = %Q{Strategies for cleaning databases. Can be used to ensure a clean state for testing.} s.email = "ben@benmabey.com" s.homepage = "http://github.com/bmabey/database_cleaner" - s.description = "TODO" + s.description = "Strategies for cleaning databases. Can be used to ensure a clean state for testing." s.files = FileList["[A-Z]*.*", "{examples,lib,features,spec}/**/*", "Rakefile", "cucumber.yml"] s.authors = ["Ben Mabey"] end diff --git a/VERSION.yml b/VERSION.yml index 2f7f5da..91ea78d 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,4 +1,4 @@ --- -:patch: 1 +:patch: 2 :major: 0 :minor: 2 diff --git a/database_cleaner.gemspec b/database_cleaner.gemspec index 828767f..ab95717 100644 --- a/database_cleaner.gemspec +++ b/database_cleaner.gemspec @@ -2,12 +2,12 @@ Gem::Specification.new do |s| s.name = %q{database_cleaner} - s.version = "0.2.1" + s.version = "0.2.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Ben Mabey"] s.date = %q{2009-05-08} - s.description = %q{Strategies for cleaning databases in Ruby. 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.extra_rdoc_files = [ "LICENSE", @@ -45,7 +45,7 @@ Gem::Specification.new do |s| s.rdoc_options = ["--charset=UTF-8"] s.require_paths = ["lib"] s.rubygems_version = %q{1.3.2} - s.summary = %q{Strategies for cleaning databases in Ruby. 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 = [ "spec/database_cleaner/active_record/truncation_spec.rb", "spec/database_cleaner/configuration_spec.rb",