Sha256: b3224348eaf2ea3f95d9f233862e46651221edc1efba93acfb8940bd9bfb9fa5
Contents?: true
Size: 251 Bytes
Versions: 15
Compression:
Stored size: 251 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
15 entries across 15 versions & 1 rubygems