Giter VIP home page Giter VIP logo

Comments (5)

piotrmurach avatar piotrmurach commented on May 18, 2024

Hi Ilya,

The generic idea will be to do similar thing to docs, that is, use target to specify external context and then in callbacks instrument the AR instance to persist it's state etc... See thread for similar discussion. In summary, I'm gonna be working to release a version this weekend that fully works with target object and test it against active record!

from finite_machine.

piotrmurach avatar piotrmurach commented on May 18, 2024

I've released v0.2.0 that allows for easy integration with any object including ActiveRecord. See integration section for further details. Let me know how you getting on with this?

from finite_machine.

vassilevsky avatar vassilevsky commented on May 18, 2024

Thank you for clearing this up. I see now that the machine is quite standalone, and I'm supposed to plug it into models the DIY way.

from finite_machine.

piotrmurach avatar piotrmurach commented on May 18, 2024

You can even go further than my example and have for example Account to be your pure AR state storage and AccountManager class that actually takes an account instance

class Account < ActiveRecord::Base; end
class AccountManager
  attr_accessor :account  
  def initiailize(account)
    @acount = account
  end
  def manage
     @manage = FiniteMachine.define do
        target account
      end
  end
end

account = Account.new
manager = AccountManager.new(account)
manager.manage.debit_account # puts account into :debit state etc...

Possibilities are endless! The sweet part is that in future if you decide to use some other ORM you can do it very easily without much hassle, as a side effect you can test your machine separately from the model itself. Once you implement your solution you can send me pull request so that we can add it to readme?

from finite_machine.

vassilevsky avatar vassilevsky commented on May 18, 2024

Yes, I never said a standalone machine is bad, it's actually quite the opposite, and you did a fantastic job here! If/when I use it in production, I will let you know. Won't be easy. I work in a team and we currently use the state_machine gem everywhere. Lots of typing/testing to replace.

from finite_machine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.