Skip to content

Instantly share code, notes, and snippets.

@kurotaky
Created December 5, 2013 22:01
Show Gist options
  • Select an option

  • Save kurotaky/7814763 to your computer and use it in GitHub Desktop.

Select an option

Save kurotaky/7814763 to your computer and use it in GitHub Desktop.
source "https://rubygems.org"
gem 'thor'
#!/usr/bin/env ruby
require 'thor'
class Ops < Thor
desc "start", "open database operation file"
def start
p Time.now
end
end
Ops.start(ARGV)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment