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.



15
16
# File 'lib/submitter.rb', line 15

def connect
end

#properties=(hash) ⇒ Object

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



9
10
11
# File 'lib/submitter.rb', line 9

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

#send(message) ⇒ Object

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



20
21
# File 'lib/submitter.rb', line 20

def send(message)
end