Sha256: f827f3b98035b655ab7478a20cc446c501bdb416e0c4593f489b97ec0f0f2f3e
Contents?: true
Size: 703 Bytes
Versions: 62
Compression:
Stored size: 703 Bytes
Contents
module Rails module Rack class LogTailer def initialize(app, log = nil) @app = app path = Pathname.new(log || "#{::File.expand_path(Rails.root)}/log/#{Rails.env}.log").cleanpath @cursor = @file = nil if ::File.exist?(path) @cursor = ::File.size(path) @file = ::File.open(path, 'r') end end def call(env) response = @app.call(env) tail! response end def tail! return unless @cursor @file.seek @cursor unless @file.eof? contents = @file.read @cursor = @file.tell $stdout.print contents end end end end end
Version data entries
62 entries across 62 versions & 3 rubygems