Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Created June 11, 2012 10:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffkreeftmeijer/2909445 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/2909445 to your computer and use it in GitHub Desktop.
Preloading dependencies
require 'drb'
runner = DRbObject.new nil, 'druby://:4321'
runner.run(ARGV)
require 'drb'
ARGV.each { |file| require File.expand_path file }
Rails.env = 'test' if defined? Rails
class Runner
def run(files)
fork do
files.each { |file| require File.expand_path file }
end
Process.wait
end
end
DRb.start_service 'druby://:4321', Runner.new
DRb.thread.join
require File.expand_path 'slow'
100.times do
sleep rand * 0.01
print '.'
end
require File.expand_path 'slow'
3.times do
fork do
require File.expand_path 'test'
end
Process.wait
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment