Giter Site home page Giter Site logo

yrgoldteeth / state_machine_audits Goto Github PK

View Code? Open in Web Editor NEW

This project forked from isotope11/state_machine_audits

1.0 2.0 0.0 428 KB

Track / Audit changes on ActiveRecord models that use the state_machine gem.

Home Page: http://www.isotope11.com

Ruby 100.00%

state_machine_audits's Introduction

== StateMachineAudits

This gem is meant to be used in conjunction with the state_machine gem in a Rails3 project.  It will hook into before_save and track any state changes that happen in its own database table.

To that end, you need a migration that looks something like this:

class CreateStateMachineStateAudits < ActiveRecord::Migration
  def self.up
    create_table :state_machine_state_audits do |t|
      t.string :state_machine_auditable_type
      t.integer :state_machine_auditable_id
      t.string :state_field
      t.string :state
      t.timestamps
    end
  end

  def self.down
    drop_table :state_machine_state_audits
  end
end

After that, you just include the module in your class that uses state_machine like so:

class SomeClass < ActiveRecord::Base
  include StateMachineAudits
end

That's it, you're done.  Now it will keep a record of each state transition.

state_machine_audits's People

Contributors

yrgoldteeth avatar

Stargazers

 avatar

Watchers

 avatar  avatar

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.