18 lines
252 B
Ruby
Executable File
18 lines
252 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require 'thor'
|
|
require 'builder'
|
|
|
|
$: << File.expand_path('../../lib', __FILE__)
|
|
|
|
require 'hollandaise'
|
|
require 'hollandaise/cli'
|
|
|
|
begin
|
|
load File.join(Dir.pwd, 'hollandaise.rb')
|
|
rescue LoadError => e
|
|
end
|
|
|
|
Hollandaise::CLI.start
|
|
|