Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
13answers
15k views

ruby on rails state machines

I'm looking to implement a state machine to manage a user moving through a series of steps over an extended period of time (weeks) with emails and then they interact with the app. I've looked at a ...
4
votes
1answer
1k views

Validating a finite state machine (using AASM) on Rails

I'm using AASM by Rubyist to build a 4-step wizard for an AR object. According to the state of the object, there are different validations that need to be done. What is the smartest way to validate an ...
3
votes
4answers
1k views

Persisting the state column on transition using rubyist-aasm (acts as state machine)

What is the best way to persist the object's state to the database on a transition using aasm? I had thought that this would happen automatically but this doesn't seem to be the case. (Edit: when I ...
2
votes
2answers
126 views

best practice for gems like workflow or AASM

i would like to know how you guys use the workflow or the AASM gem in the controller if you want to update all attributes, but also need the workflow/AASM callbacks to fire properly. currently, i use ...
2
votes
2answers
322 views

Multiple state machines in one model?

I have a model that represents a registration process, which needs to track the progression of several processes (background checks, interviews, information collection...). Each one can be ...
1
vote
1answer
170 views

Ruby State Machine with history, superstates, and logs/statistics?

Is there any state machine implementation for Ruby or Ruby on Rails that supports superstates, can keep track of past states (and edit them), and keep track of the time spent on each state? I've used ...
1
vote
1answer
300 views

AASM: Transitions from any state?

I am using AASM (https://github.com/rubyist/aasm). Is it possible to transition from any state? For example: aasm_event :publish do transitions :to => :publish, :from => ANY_STATE end I ...
1
vote
0answers
135 views

How to return a value on aasm event?

How do I make an aasm event return a value other than boolean? I'm using aasm 2.2.0 E.g. There is a MusicPlayer model which randomly plays a song when started aasm_state :started, :after_enter => ...
1
vote
2answers
272 views

Getting list of states/events from a model that AASM

I successfully integrated the most recent AASM gem into an application, using it for the creation of a wizard. In my case I have a model order class Order < ActiveRecord::Base belongs_to :user ...
1
vote
2answers
880 views

Rails error handling with AASM state machine

I'm using the rubyist-aasm state machine for handling the different states in my Event object (event initialized, event discussed, event published, etc.). I added guards to prevent state changes when ...
1
vote
2answers
177 views

Can I make AASM run a specific method on event fail?

Is there a nice way to tell AASM that if an exception is raised while processing any assm_event I want that error to be caught by a specific block of code? eg currently I do something like ...
1
vote
1answer
110 views

Best way to represent who changed the state of an object and when? (AASM)

Right now I'm storing the user who last updated the state of my model in the state_last_updated_by_id field and the time the state was last updated in the state_updated_at field. Then I define methods ...
1
vote
1answer
505 views

Register callback for all transitions in AASM?

There are 2 methods I want to call after every state transition. Right now I'm doing: aasm_event :nominate_for_publishing, :before => [:set_state_last_updated_by, :set_state_updated_at] do ...
1
vote
2answers
2k views

AASM Gem broken by Rails 2.3.2?

Has anyone had any problems using the AASM state machine Gem with Rails 2.3.2? It was working fine for me but is now giving a NoMethodError: NoMethodError (undefined method `state' for ...
1
vote
2answers
868 views

What is the best way to halt a transition with AASM

When a method being called in the success or enter phases of a state transition throw errors, what is the best way to catch this and ensure that the state reverts back to the previous state. I'm ...
0
votes
1answer
23 views

How do I access old and new states in an aasm callback in rails?

I am new to both Ruby and Rails. I'm using AASM to put state machine behavior into a model class. Depending on the old and new states I want to handle the state change event in different ways. How ...
0
votes
0answers
23 views

How to tell AASM to igonore an event if that event is not applicable for the current state (a transition is not defined)?

I am using AASM. I have an event defined with a transition. It works if the event is raised and the model is in :from state. However it throws InValidTransition exception if the model is in any other ...
0
votes
1answer
37 views

AASM: proper syntax for a guard callback

Here is my example code: class Foo < ActiveRecord::Base include AASM aasm_column :status aasm_initial_state :start_state aasm_state :start_state aasm_state :state_two aasm_state ...
0
votes
1answer
38 views

Ruby add dynamic events using AASM

I've got a class in a program which is handling game states. I'm actually handling it with AASM so to create an event I have to use something like aasm_event :name ... inside the class. I need to be ...
0
votes
1answer
851 views

How do I implement aasm in Rails 3 for what I want it to do?

I am a Rails n00b and have been advised that in order for me to keep track of the status of my user's accounts (i.e. paid, unpaid (and therefore disabled), free trial, etc.) I should use an 'AASM' ...
0
votes
3answers
563 views

Hooking Observers with Events

We are using AASM in quite a few of our models, but we're looking at simplifying a bit the models. One of the things we'd like to do is to move all the Notification stuff out of the models and into ...
0
votes
0answers
833 views

rails state_machine pattern for credit card processing

I'm using the rails state_machine plugin (looks better than aasm) - it looks great - however, I've implemented it for a credit card processing system I wrote and it looks a bit strange... the code ...
0
votes
1answer
210 views

How can I access a collection of acts_as_state_machine states for a particular rails model?

Is it possible to access the collection of states for the given model: class Conversation include AASM aasm_initial_state :unread aasm_state :unread aasm_state :read aasm_state :closed ...
0
votes
1answer
401 views

Multiple counter cache columns with aasm

I am looking for a way to cache the number of each state. I have done counter caching before, but is there a way to create multiple counter_cache columns for each state and keep them updated or ...
0
votes
1answer
477 views

How do you override :set_initial_state from AASM when testing with Factory Girl factories?

Update Answered below. In case the linked site disappears, you can use mocha to stub the initial state and prevent overwriting as in ... require 'mocha' class OrderTest < ActiveSupport::TestCase ...
0
votes
1answer
484 views

Refactoring before_filters in Controller

I'm working on a rails app that has a whole bunch of before filters in the users_controller which look up user's stateful roles provided by Acts as State Machine. They look something like this: class ...