Sha256: af307790faf8ded59487d5b172ffb3cdaaf11c650b84b69ec4d1c3ebc7219dc1
Contents?: true
Size: 252 Bytes
Versions: 31
Compression:
Stored size: 252 Bytes
Contents
module Shipit 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 end
Version data entries
31 entries across 31 versions & 1 rubygems