From 82c3202da3dc3b53e93609a3537e394c925dbf15 Mon Sep 17 00:00:00 2001 From: Scott Barron Date: Wed, 24 Dec 2008 10:21:37 -0500 Subject: [PATCH] bump revs to generate gems --- aasm.gemspec | 2 +- lib/aasm.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aasm.gemspec b/aasm.gemspec index 80a0ef4..2fd79a3 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.3" + s.version = "2.0.4" 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 d8bf3b5..6db7b97 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.3' + '2.0.4' end class InvalidTransition < RuntimeError