個人メモ
module Hoge
extend ActiveSupport::Concern
included do
# before_actionとか
end
# クラスメソッド定義
module ClassMethods
def foo
...
end
end
# インスタンスメソッド定義
def bar
...
end
end
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
個人メモ
module Hoge
extend ActiveSupport::Concern
included do
# before_actionとか
end
# クラスメソッド定義
module ClassMethods
def foo
...
end
end
# インスタンスメソッド定義
def bar
...
end
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked