Sha256: b8bc53c160f1994e96f5611ac2bbb3af82c92f3c376974fe6c1073d41bdf5738

Contents?: true

Size: 219 Bytes

Versions: 10

Compression:

Stored size: 219 Bytes

Contents

module QueryReport
  class Row
    attr_reader :name, :value, :type

    def initialize(name, value)
      @name  = name
      @value = value
      @type  = value.kind_of?(String) ? 'string' : 'number'
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
query_report-0.1.2 lib/query_report/row.rb
query_report-0.1.1 lib/query_report/row.rb
query_report-0.1.0 lib/query_report/row.rb
query_report-0.0.9 lib/query_report/row.rb
query_report-0.0.8 lib/query_report/row.rb
query_report-0.0.7 lib/query_report/row.rb
query_report-0.0.6 lib/query_report/row.rb
query_report-0.0.5 lib/query_report/row.rb
query_report-0.0.4 lib/query_report/row.rb
query_report-0.0.3 lib/query_report/row.rb