Ooops! Fixed upgrade of Rails.
This commit is contained in:
parent
5536e6e79e
commit
bba0cf6b10
177 changed files with 13221 additions and 0 deletions
19
vendor/rails/railties/lib/commands/servers/base.rb
vendored
Normal file
19
vendor/rails/railties/lib/commands/servers/base.rb
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
def tail(log_file)
|
||||
cursor = File.size(log_file)
|
||||
last_checked = Time.now
|
||||
tail_thread = Thread.new do
|
||||
File.open(log_file, 'r') do |f|
|
||||
loop do
|
||||
f.seek cursor
|
||||
if f.mtime > last_checked
|
||||
last_checked = f.mtime
|
||||
contents = f.read
|
||||
cursor += contents.length
|
||||
print contents
|
||||
end
|
||||
sleep 1
|
||||
end
|
||||
end
|
||||
end
|
||||
tail_thread
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue