class Bombard::Publisher

Public Class Methods

for(results) click to toggle source
# File lib/bombard/publisher.rb, line 6
def for(results)
  new results
end
new(results) click to toggle source
# File lib/bombard/publisher.rb, line 11
def initialize(results)
  @results = results
end

Public Instance Methods

publish() click to toggle source
# File lib/bombard/publisher.rb, line 20
def publish
  abort "'publish' method not implemented in #{self.class}"
end
with_opts(options) click to toggle source
# File lib/bombard/publisher.rb, line 15
def with_opts(options)
  @options = options
  self
end