Class: Superset::Database::Get
- Defined in:
- lib/superset/database/get.rb
Constant Summary
Constants inherited from Request
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Attributes inherited from Request
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id) ⇒ Get
constructor
A new instance of Get.
- #result ⇒ Object
Methods inherited from Request
#query_params, #response, #superset_host
Methods included from Superset::Display
#display_headers, #headings, #list, #rows, #table, #title
Constructor Details
#initialize(id) ⇒ Get
Returns a new instance of Get.
7 8 9 |
# File 'lib/superset/database/get.rb', line 7 def initialize(id) @id = id end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
5 6 7 |
# File 'lib/superset/database/get.rb', line 5 def id @id end |
Class Method Details
.call(id) ⇒ Object
11 12 13 |
# File 'lib/superset/database/get.rb', line 11 def self.call(id) self.new(id).list end |
Instance Method Details
#result ⇒ Object
15 16 17 |
# File 'lib/superset/database/get.rb', line 15 def result [ super ] end |