1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Changed: minor edits to gemspec to reflect fork (and trigger gem build...)

This commit is contained in:
David Palm 2009-01-26 19:32:18 +01:00
parent 7af67e6e96
commit 112166a6a6
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,5 @@
* Fixed compatibility issue with Ruby 1.9.1
* In AR persistence, move state column from class level variables into the StateMachine object for the class * In AR persistence, move state column from class level variables into the StateMachine object for the class
* allowed :to array and :on_transition callback [Kevin Triplett] * allowed :to array and :on_transition callback [Kevin Triplett]

View file

@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = "2.0.5" s.version = "2.0.5"
s.summary = 'State machine mixin for Ruby objects' s.summary = 'State machine mixin for Ruby objects'
s.description = <<-EOF s.description = <<-EOF
AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects. AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects. This fork adds Ruby 1.9.1 compatibility.
EOF EOF
s.files = PKG_FILES s.files = PKG_FILES
s.require_path = 'lib' s.require_path = 'lib'
@ -13,7 +13,7 @@ EOF
s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG'] s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG']
s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc', '--title', 'AASM'] s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.rdoc', '--title', 'AASM']
s.author = 'Scott Barron' s.author = 'Scott Barron, David Palm'
s.email = 'scott@elitists.net' s.email = 'scott@elitists.net, dvdplm@gmail.com'
s.homepage = 'http://github.com/rubyist/aasm' s.homepage = 'http://github.com/dvdplm/aasm'
end end