10 lines
172 B
Ruby
Executable File
10 lines
172 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require 'pathname'
|
|
lib = Pathname.new(__FILE__).dirname.join('..', 'lib').expand_path
|
|
$LOAD_PATH.unshift lib.to_s
|
|
|
|
require 'homesick'
|
|
|
|
Homesick.start
|