Class: Keener::Query
- Inherits:
-
Object
- Object
- Keener::Query
- Defined in:
- lib/keener/query.rb
Instance Method Summary collapse
-
#initialize(project_id, event_collection, options = {}) {|_self| ... } ⇒ Query
constructor
A new instance of Query.
Constructor Details
#initialize(project_id, event_collection, options = {}) {|_self| ... } ⇒ Query
Returns a new instance of Query.
3 4 5 6 7 8 |
# File 'lib/keener/query.rb', line 3 def initialize(project_id, event_collection, = {}) @project_id = project_id @event_collection = event_collection @options = yield self if block_given? end |