2011-02-26から1日間の記事一覧

PerlのApp::CLIみたいなやつ

class MyApp < App::CLI::Dispatcher options :verbose, :debug def install(pkg_name) # ... end def uninstall(pkg_name) # ... end def mysubcmd(*args) Class.new(App::CLI::Dispatcher) { def subsub # ... end }.run(args) end private def my_helper …

RSpec2

${PROJ_ROOT}/spec/spec.opts -> ${PROJ_ROOT}/.rspec || ${HOME}/.rspec autotest を走らせるとき ${PROJ_ROOT}/.rspec があると RSpec2 でテストする。 spec -> rspec spec --f[ormat] s[pecdoc] -> rspec --format d[ocumentation] # ~/.autotest Autotes…