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:
parent
7af67e6e96
commit
112166a6a6
2 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
||||
* allowed :to array and :on_transition callback [Kevin Triplett]
|
||||
|
|
|
@ -5,7 +5,7 @@ Gem::Specification.new do |s|
|
|||
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.
|
||||
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
|
||||
s.files = PKG_FILES
|
||||
s.require_path = 'lib'
|
||||
|
@ -13,7 +13,7 @@ EOF
|
|||
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.homepage = 'http://github.com/rubyist/aasm'
|
||||
s.author = 'Scott Barron, David Palm'
|
||||
s.email = 'scott@elitists.net, dvdplm@gmail.com'
|
||||
s.homepage = 'http://github.com/dvdplm/aasm'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue