Skip to content

Commit

Permalink
bump version and fix gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Barron committed Aug 8, 2009
1 parent 64ed2a7 commit 0f90e5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aasm.gemspec
@@ -1,8 +1,8 @@
PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib/aasm.rb", "lib/event.rb", "lib/persistence/active_record_persistence.rb", "lib/persistence.rb", "lib/state.rb", "lib/state_machine.rb", "lib/state_transition.rb", "lib/version.rb", "doc/jamis.rb"]
PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib/aasm.rb", "lib/event.rb", "lib/persistence/active_record_persistence.rb", "lib/persistence.rb", "lib/state.rb", "lib/state_machine.rb", "lib/state_transition.rb", "doc/jamis.rb"]

Gem::Specification.new do |s|
s.name = 'aasm'
s.version = "2.0.5"
s.version = "2.0.6"
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.
Expand Down
2 changes: 1 addition & 1 deletion lib/aasm.rb
Expand Up @@ -5,7 +5,7 @@

module AASM
def self.Version
'2.0.5'
'2.0.6'
end

class InvalidTransition < RuntimeError
Expand Down

0 comments on commit 0f90e5a

Please sign in to comment.