Class: RMB::Submitter

Inherits:
Object
  • Object
show all
Defined in:
lib/submitter.rb

Direct Known Subclasses

MechanizeSubmitter

Instance Method Summary collapse

Instance Method Details

#connectObject

connect This is an abstract method, intended to be implemented by a subclass.



13
14
# File 'lib/submitter.rb', line 13

def connect
end

#properties=(hash) ⇒ Object

properties=(hash) This method establishes the logger for the subclass.



7
8
9
# File 'lib/submitter.rb', line 7

def properties=(hash)
  @logger = hash[:logger]
end

#send(message) ⇒ Object

connect This is an abstract method, intended to be implemented by a subclass.



18
19
# File 'lib/submitter.rb', line 18

def send(message)
end