Flowdock
method

tail!

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: Rails::Rack::LogTailer
tail!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/rack/log_tailer.rb, line 22
      def tail!
        return unless @cursor
        @file.seek @cursor

        unless @file.eof?
          contents = @file.read
          @cursor = @file.tell
          $stdout.print contents
        end
      end
Register or log in to add new notes.