bump rev so new gems are available

This commit is contained in:
Scott Barron 2008-12-15 15:20:18 -05:00
parent 7105344210
commit e6d0ba87de
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.2"
s.version = "2.0.3"
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
'0.0.2'
'2.0.3'
end
class InvalidTransition < RuntimeError