Class: Facebooker::Rails::Publisher::ImageHolder

Inherits:
Object
  • Object
show all
Defined in:
lib/facebooker/rails/publisher.rb

Overview

work around the fact that facebook cares about the order of the keys in the hash

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(src, href) ⇒ ImageHolder

Returns a new instance of ImageHolder.



321
322
323
324
# File 'lib/facebooker/rails/publisher.rb', line 321

def initialize(src,href)
  self.src=src
  self.href=href
end

Instance Attribute Details

#hrefObject

Returns the value of attribute href.



320
321
322
# File 'lib/facebooker/rails/publisher.rb', line 320

def href
  @href
end

#srcObject

Returns the value of attribute src.



320
321
322
# File 'lib/facebooker/rails/publisher.rb', line 320

def src
  @src
end

Instance Method Details

#to_json(*args) ⇒ Object



326
327
328
# File 'lib/facebooker/rails/publisher.rb', line 326

def to_json(*args)
  "{\"src\":#{src.to_json}, \"href\":#{href.to_json}}"
end