File: state_machine.rb

package info (click to toggle)
ruby-state-machine 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,764 kB
  • ctags: 6,623
  • sloc: ruby: 26,008; makefile: 11
file content (8 lines) | stat: -rw-r--r-- 401 bytes parent folder | download
1
2
3
4
5
6
7
8
# By default, requiring "state_machine" means that both the core implementation
# *and* extensions to the Ruby core (Class in particular) will be pulled in.
# 
# If you want to skip the Ruby core extensions, simply require "state_machine/core"
# and extend StateMachine::MacroMethods in your class.  See the README for more
# information.
require 'state_machine/core'
require 'state_machine/core_ext'