module Screengem::Executable
Concern for adding the command pattern.
Public Instance Methods
execute()
click to toggle source
Subclasses must implement an execute method.
# File lib/screengem/concerns/executable.rb, line 11 def execute raise "You must define an execute method" end