From c42d2d45defbb90fb36ff051ad6a584f7e9dbdfe Mon Sep 17 00:00:00 2001 From: Ben Mabey Date: Tue, 13 Apr 2010 09:58:40 -0600 Subject: [PATCH] Version bump to 0.5.1 --- VERSION.yml | 2 +- database_cleaner.gemspec | 13 ++++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/VERSION.yml b/VERSION.yml index 4b6aef6..da81cf9 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,5 +1,5 @@ --- :minor: 5 +:patch: 1 :build: -:patch: 0 :major: 0 diff --git a/database_cleaner.gemspec b/database_cleaner.gemspec index 3e8157c..63318e7 100755 --- a/database_cleaner.gemspec +++ b/database_cleaner.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{database_cleaner} - s.version = "0.5.0" + s.version = "0.5.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Ben Mabey"] - s.date = %q{2010-02-22} + s.date = %q{2010-04-13} 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 = [ @@ -29,6 +29,7 @@ Gem::Specification.new do |s| "examples/lib/activerecord_models.rb", "examples/lib/couchpotato_models.rb", "examples/lib/datamapper_models.rb", + "examples/lib/mongoid_models.rb", "examples/lib/mongomapper_models.rb", "features/cleaning.feature", "features/step_definitions/database_cleaner_steps.rb", @@ -42,11 +43,14 @@ Gem::Specification.new do |s| "lib/database_cleaner/data_mapper/transaction.rb", "lib/database_cleaner/data_mapper/truncation.rb", "lib/database_cleaner/mongo_mapper/truncation.rb", + "lib/database_cleaner/mongoid/truncation.rb", "lib/database_cleaner/truncation_base.rb", + "spec/database_cleaner/active_record/transaction_spec.rb", "spec/database_cleaner/active_record/truncation_spec.rb", "spec/database_cleaner/configuration_spec.rb", "spec/database_cleaner/couch_potato/truncation_spec.rb", "spec/database_cleaner/mongo_mapper/truncation_spec.rb", + "spec/database_cleaner/mongoid/truncation_spec.rb", "spec/spec.opts", "spec/spec_helper.rb" ] @@ -56,16 +60,19 @@ Gem::Specification.new do |s| 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/database_cleaner/active_record/truncation_spec.rb", + "spec/database_cleaner/active_record/transaction_spec.rb", + "spec/database_cleaner/active_record/truncation_spec.rb", "spec/database_cleaner/configuration_spec.rb", "spec/database_cleaner/couch_potato/truncation_spec.rb", "spec/database_cleaner/mongo_mapper/truncation_spec.rb", + "spec/database_cleaner/mongoid/truncation_spec.rb", "spec/spec_helper.rb", "examples/features/step_definitions/example_steps.rb", "examples/features/support/env.rb", "examples/lib/activerecord_models.rb", "examples/lib/couchpotato_models.rb", "examples/lib/datamapper_models.rb", + "examples/lib/mongoid_models.rb", "examples/lib/mongomapper_models.rb" ]