class CreatePost class RubyRequest # A simpe implementation of the request interface for a create post interactor # The request interface fronts this implementation. prepend RequestInterface def initialize(title) @title = title end def title @title end end end