Sha256: 26bf57299e98600760bf03e0ce0c7a1438006bead0bb6f16af24323587d910e9
Contents?: true
Size: 354 Bytes
Versions: 15
Compression:
Stored size: 354 Bytes
Contents
module Twurl # Subclasses need to implement a `dispatch' instance method. class AbstractCommandController attr_reader :client, :options class << self def dispatch(*args, &block) new(*args, &block).dispatch end end def initialize(client, options) @client = client @options = options end end end
Version data entries
15 entries across 15 versions & 1 rubygems