AASM - State machines for Ruby classes (plain Ruby, ActiveRecord, Mongoid, NoBrainer, Dynamoid)
Go to file
Rob Kaufman 6b1e0f4949 Making the specs rcov runnable 2009-03-27 14:29:35 -07:00
doc Prepare rakefile and rake tasks for gem packaging and rdocing 2008-02-21 11:41:56 -05:00
lib Ruby 1.9 compat 2009-02-06 23:34:41 +08:00
spec Making the specs rcov runnable 2009-03-27 14:29:35 -07:00
.gitignore Fixing version number in README.rdoc. 2008-07-09 16:42:04 -07:00
CHANGELOG update changelog 2008-06-23 09:02:21 -04:00
MIT-LICENSE Add .aasm_states method to get a list of all states for a class 2008-02-21 12:54:42 -05:00
README.rdoc Fix misleading example which uses a 'new' state. 2008-12-29 10:05:07 -05:00
Rakefile exclude rcov.rb from rcov report 2008-12-12 10:05:09 -05:00
TODO Support enter and exit actions on states 2008-05-31 15:08:12 -07:00
aasm.gemspec bump revision 2008-12-30 09:59:07 -05:00
aasm.rb Import into git 2008-01-07 14:11:38 -05:00

README.rdoc

= AASM - Ruby state machines

This package contains AASM, a library for adding finite state machines to Ruby classes.

AASM started as the acts_as_state_machine plugin but has evolved into a more generic library that no longer targets only ActiveRecord models.

AASM has the following features:

* States
* Machines
* Events
* Transitions

== Download

The latest AASM can currently be pulled from the git repository on github.

* http://github.com/rubyist/aasm/tree/master

A release and a gem are forthcoming.



== Installation

=== From GitHub hosted gems

  % sudo gem sources -a http://gems.github.com # (you only need to do this once)
  % sudo gem install rubyist-aasm

=== Building your own gems

  % rake gem
  % sudo gem install pkg/aasm-2.0.1.gem


== Simple Example

Here's a quick example highlighting some of the features.

  class Conversation
    include AASM

    aasm_initial_state :unread

    aasm_state :unread
    aasm_state :read
    aasm_state :closed


    aasm_event :view do
      transitions :to => :read, :from => [:unread]
    end

    aasm_event :close do
      transitions :to => :closed, :from => [:read, :unread]
    end
  end

= Other Stuff

Author::  Scott Barron <scott at elitists dot net>
License:: Copyright 2006, 2007, 2008 by Scott Barron.
          Released under an MIT-style license.  See the LICENSE  file
          included in the distribution.
Bugs::    http://rubyist.lighthouseapp.com/projects/13207-aasm/
GitHub::  http://github.com/rubyist/aasm/tree/master

== Warranty

This software is provided "as is" and without any express or
implied warranties, including, without limitation, the implied
warranties of merchantibility and fitness for a particular
purpose.