Class: Fb::Metric
- Inherits:
-
Object
- Object
- Fb::Metric
- Defined in:
- lib/fb/metric.rb
Overview
Fb::Metric reprensents a Facebook page’s metric. For a list of all available metrics, refer to: Provides methods to read name, description, and value.
Instance Attribute Summary collapse
-
#description ⇒ String
readonly
A description for the metric.
-
#name ⇒ String
readonly
The name of the metric (e.g. page_fans).
-
#value ⇒ Integer
readonly
The value of the metric when last requested.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Metric
constructor
A new instance of Metric.
-
#to_s ⇒ String
The representation of the metric.
Constructor Details
permalink #initialize(options = {}) ⇒ Metric
Returns a new instance of Metric.
24 25 26 27 28 |
# File 'lib/fb/metric.rb', line 24 def initialize( = {}) @name = ["name"] @description = ["description"] @value = ["values"].first["value"] end |
Instance Attribute Details
permalink #description ⇒ String (readonly)
Returns a description for the metric.
14 15 16 |
# File 'lib/fb/metric.rb', line 14 def description @description end |
permalink #name ⇒ String (readonly)
Returns the name of the metric (e.g. page_fans).
11 12 13 |
# File 'lib/fb/metric.rb', line 11 def name @name end |
permalink #value ⇒ Integer (readonly)
Returns the value of the metric when last requested.
17 18 19 |
# File 'lib/fb/metric.rb', line 17 def value @value end |
Instance Method Details
permalink #to_s ⇒ String
Returns the representation of the metric.
31 32 33 |
# File 'lib/fb/metric.rb', line 31 def to_s "#<#{self.class.name} name=#{@name}, description=#{@description}, value=#{@value}>" end |