Skip to content

Instantly share code, notes, and snippets.

View petermoresi's full-sized avatar

Peter Moresi petermoresi

  • Greater Los Angeles
View GitHub Profile
@pfeilbr
pfeilbr / register_ruby_example_service.rb
Created March 19, 2010 12:01
ruby windows service example
require "rubygems"
require "win32/service"
require "pp"
include Win32
options = {:service_name=>'ruby_example_service',
:service_type => Service::WIN32_OWN_PROCESS,
:description => 'A custom service I wrote just for fun',
:start_type => Service::AUTO_START,