Sha256: 7a9ad294cfb5a4576a147e0b21208c1a779e8213d1c5923be09495a770ea9509

Contents?: true

Size: 421 Bytes

Versions: 4

Compression:

Stored size: 421 Bytes

Contents

#Qfill::Origin.new(:name => "High List",
#                     :elements => [Thing1, Thing3],
#                     :backfill => "Medium List",
#                     :filter => filter1),
module Qfill
  class Origin < Qfill::List
    attr_accessor :backfill

    def initialize(options = {})
      super(options)
      @backfill = options[:backfill]
    end

    def has_backfill?
      !!self.backfill
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
qfill-0.0.4 lib/qfill/origin.rb
qfill-0.0.3 lib/qfill/origin.rb
qfill-0.0.2 lib/qfill/origin.rb
qfill-0.0.1 lib/qfill/origin.rb