bump revision

This commit is contained in:
Scott Barron 2008-12-30 09:59:07 -05:00
parent f1748118ba
commit 5aff31982d
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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