repost-master/lib/repost/action.rb

9 lines
122 B
Ruby

module Repost
class Action
def self.perform(*args)
action = new(*args)
action.perform
end
end
end