Class: OpenX::Services::Publisher

Inherits:
Base
  • Object
show all
Defined in:
lib/openx/services/publisher.rb

Constant Summary

Constants inherited from Base

Base::CONFIGURATION_YAML

Instance Method Summary collapse

Methods inherited from Base

#<=>, configuration, configuration=, connection, connection=, create!, destroy, #destroy, find, has_one, #new_record?, openx_accessor, #save!

Constructor Details

#initialize(params = {}) ⇒ Publisher

Returns a new instance of Publisher.



20
21
22
23
24
# File 'lib/openx/services/publisher.rb', line 20

def initialize(params = {})
  raise "need agency" unless params[:agency_id] || params[:agency]
  params[:agency_id] ||= params[:agency].id
  super(params)
end

Instance Method Details

#zonesObject



26
27
28
# File 'lib/openx/services/publisher.rb', line 26

def zones
  Zone.find(:all, self.id)
end