No commit activity in last 3 years
No release in over 3 years
简单的在class添加回调,比如在service、model中
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

SimpleMethodCallback

简单的在class添加回调,比如在service、model中

使用说明

include SimpleMethodCallback
around_action :everyday, only: %w[one two three]

def one
end

def two
end

def three
end

def everyday(&block)
  yield
end

作用和 controller 里面的 around_action 一样。