Sha256: fc4da140ee2c4dcf421e3c603724cc0c4a6152becdff06975e439a9b75f4a7ba
Contents?: true
Size: 220 Bytes
Versions: 20
Compression:
Stored size: 220 Bytes
Contents
class OutputChunk < ActiveRecord::Base belongs_to :task scope :tail, -> (start) { order(id: :asc).where('id > ?', start || 0) } def text=(string) super(string.force_encoding(Encoding::UTF_8).scrub) end end
Version data entries
20 entries across 20 versions & 1 rubygems