diff --git a/lib/repost/action.rb b/lib/repost/action.rb index 547300b..19f28e0 100644 --- a/lib/repost/action.rb +++ b/lib/repost/action.rb @@ -1,6 +1,8 @@ -class Action - def self.perform(*args) - action = new(*args) - action.perform +module Repost + class Action + def self.perform(*args) + action = new(*args) + action.perform + end end end