Skip to content

Commit

Permalink
...lets try this again
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Tilley committed May 28, 2009
1 parent c323e8a commit 6c4d3b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions aasm.gemspec
Expand Up @@ -2,19 +2,18 @@ PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib

Gem::Specification.new do |s|
s.name = 'aasm'
s.version = "2.0.7"
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.
EOF
s.version = "2.0.7.1"
s.summary = %q{State machine mixin for Ruby objects}
s.description = %q{AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects.}

s.files = PKG_FILES
s.require_path = 'lib'
s.require_paths = ["lib"]

s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG']
s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc', '--title', 'AASM']

s.author = 'Scott Barron'
s.email = 'scott@elitists.net'
s.authors = ["Scott Barron"]
s.email = %q{scott@elitists.net}
s.homepage = 'http://github.com/rubyist/aasm'
end
2 changes: 1 addition & 1 deletion lib/aasm.rb
Expand Up @@ -5,7 +5,7 @@

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

class InvalidTransition < RuntimeError
Expand Down

0 comments on commit 6c4d3b7

Please sign in to comment.