Class: Bnb::Gainer
- Inherits:
-
Object
- Object
- Bnb::Gainer
- Defined in:
- lib/bnb/resources/gainer.rb
Constant Summary collapse
- GAIN_LIMIT =
100
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ Gainer
constructor
A new instance of Gainer.
- #list ⇒ Object
Constructor Details
#initialize(params = {}) ⇒ Gainer
Returns a new instance of Gainer.
7 8 9 10 |
# File 'lib/bnb/resources/gainer.rb', line 7 def initialize(params = {}) @start = params.fetch(:start, 1) @limit = params.fetch(:limit, GAIN_LIMIT) end |