Sha256: ab8059285412f77590371691fc40850bfbb40594b449a296d5ea046cc4bbe339

Contents?: true

Size: 308 Bytes

Versions: 7

Compression:

Stored size: 308 Bytes

Contents


class Stella::Client
  
  class ResponseModifier; end
  class Repeat < ResponseModifier; 
    attr_accessor :times
    def initialize(times)
      @times = times
    end
  end
  class Quit < ResponseModifier; 
    attr_accessor :message
    def initialize(msg=nil)
      @message = msg
    end
  end
  
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stella-0.7.1 lib/stella/client/modifiers.rb
stella-0.7.0.019 lib/stella/client/modifiers.rb
stella-0.7.0.018 lib/stella/client/modifiers.rb
stella-0.7.0.017 lib/stella/client/modifiers.rb
stella-0.7.0.015 lib/stella/client/modifiers.rb
stella-0.7.0.014 lib/stella/client/modifiers.rb
stella-0.7.0.012 lib/stella/client/modifiers.rb