Class: TweetStream::Arguments
- Inherits:
-
Array
- Object
- Array
- TweetStream::Arguments
- Defined in:
- lib/tweetstream/arguments.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(args) ⇒ Arguments
constructor
A new instance of Arguments.
Constructor Details
#initialize(args) ⇒ Arguments
Returns a new instance of Arguments.
5 6 7 8 |
# File 'lib/tweetstream/arguments.rb', line 5 def initialize(args) @options = args.last.is_a?(::Hash) ? args.pop : {} super(args) end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
3 4 5 |
# File 'lib/tweetstream/arguments.rb', line 3 def @options end |