forked from jasder/forgeplus
9 lines
150 B
Ruby
9 lines
150 B
Ruby
|
module Callable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
module ClassMethods
|
||
|
def call(*parameters)
|
||
|
new(*parameters).call
|
||
|
end
|
||
|
end
|
||
|
end
|