module Mobx

Constants

VERSION

Public Class Methods

init() click to toggle source
# File lib/mobx.rb, line 12
def self.init
  Thread.current['mobx'] ||= {
    autorun: [],
    transaction: nil
  }
end