1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Remove duplicate LogRunTime from Readme [skip ci]

This commit is contained in:
Anil Maurya 2018-07-31 13:15:22 +05:30
parent f10fc93bff
commit a8755d52f5

View file

@ -134,16 +134,6 @@ You can define a number of callbacks for your events, transitions and states. Th
called when certain criteria are met, like entering a particular state:
```ruby
class LogRunTime
def initialize(resource)
@resource = resource
end
def call
# Do whatever you want with @resource
end
end
class Job
include AASM