Skip to content

Instantly share code, notes, and snippets.

@sstelfox
Created March 4, 2014 15:48
Show Gist options
  • Save sstelfox/9348908 to your computer and use it in GitHub Desktop.
Save sstelfox/9348908 to your computer and use it in GitHub Desktop.
Ruby Bin Pattern
#!/usr/bin/env ruby
module SomeLibrary
def something
puts "Weee"
end
module_function :something
end
if $0 == __FILE__
SomeLibrary.something
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment