Sha256: 3ff9c276aa60f34dc2e6a37ed4402a761863e2d5b4c07213f537f32770d7355c

Contents?: true

Size: 577 Bytes

Versions: 15

Compression:

Stored size: 577 Bytes

Contents

lib_dir = File.expand_path(File.join(File.dirname(__FILE__), '../../lib'))

if File.exist?(File.join(lib_dir, 'daemons.rb'))
  $LOAD_PATH.unshift lib_dir
else
  begin; require 'rubygems'; rescue ::Exception; end
end

require 'daemons'

Daemons.run_proc('myscript') do
  loop do
    file = File.open('/tmp/myscript.log', 'a')
    file.write(Random.rand)   # breaks without seeding
    # file.write(Random.new.rand)  # works without seeding
    # file.write(rand) # also works, but this is Kernel.rand() so its different
    file.write("\n")
    file.close
    sleep 2
  end
end

Version data entries

15 entries across 13 versions & 4 rubygems

Version Path
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.1.0/gems/daemons-1.4.1/examples/run/ctrl_proc_rand.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.0.0/gems/daemons-1.4.1/examples/run/ctrl_proc_rand.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/2.6.0/gems/daemons-1.4.1/examples/run/ctrl_proc_rand.rb
daemons-1.4.1 examples/run/ctrl_proc_rand.rb
daemons-1.4.0 examples/run/ctrl_proc_rand.rb
daemons-1.3.1 examples/run/ctrl_proc_rand.rb
daemons-1.3.0 examples/run/ctrl_proc_rand.rb
daemons-1.2.6 examples/run/ctrl_proc_rand.rb
daemons-1.2.5 examples/run/ctrl_proc_rand.rb
arcabouco-0.2.13 vendor/bundle/gems/daemons-1.2.4/examples/run/ctrl_proc_rand.rb
daemons-1.2.4 examples/run/ctrl_proc_rand.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/daemons-1.2.3/examples/run/ctrl_proc_rand.rb
daemons-1.2.3 examples/run/ctrl_proc_rand.rb
daemons-1.2.2 examples/run/ctrl_proc_rand.rb
daemons-1.2.1 examples/run/ctrl_proc_rand.rb