以下の内容はhttps://this.aereal.org/entry/20110226/1298718903より取得しました。


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
    # ...
  end
end

MyApp.run
  • アプリケーション・クラスに固有の public_instance_methods がコマンドになる。
  • コマンドがアプリケーション・クラスのインスタンスを独自に持ってサブコマンドを受け付けることもできる。
  • abbrev を使ってかってに短縮オプションを生成する。



以上の内容はhttps://this.aereal.org/entry/20110226/1298718903より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14