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.



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

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

Instance Attribute Details

#hrefObject

Returns the value of attribute href.



317
318
319
# File 'lib/facebooker/rails/publisher.rb', line 317

def href
  @href
end

#srcObject

Returns the value of attribute src.



317
318
319
# File 'lib/facebooker/rails/publisher.rb', line 317

def src
  @src
end

Instance Method Details

#to_jsonObject



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

def to_json
  "{\"src\":#{src.to_json}, \"href\":#{href.to_json}}"
end