From 5aff31982d044cd532751908725b7535af88e93a Mon Sep 17 00:00:00 2001 From: Scott Barron Date: Tue, 30 Dec 2008 09:59:07 -0500 Subject: [PATCH] bump revision --- aasm.gemspec | 2 +- lib/aasm.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aasm.gemspec b/aasm.gemspec index 2fd79a3..0e8ae53 100644 --- a/aasm.gemspec +++ b/aasm.gemspec @@ -2,7 +2,7 @@ PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib Gem::Specification.new do |s| s.name = 'aasm' - s.version = "2.0.4" + s.version = "2.0.5" s.summary = 'State machine mixin for Ruby objects' s.description = <<-EOF AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects. diff --git a/lib/aasm.rb b/lib/aasm.rb index 6db7b97..fdee2ff 100644 --- a/lib/aasm.rb +++ b/lib/aasm.rb @@ -5,7 +5,7 @@ require File.join(File.dirname(__FILE__), 'persistence') module AASM def self.Version - '2.0.4' + '2.0.5' end class InvalidTransition < RuntimeError