Skip to content
shunter1112 edited this page Sep 7, 2013 · 1 revision

プラグインはデベロッパーに、機能やコマンドを追加しながら、Herokuのコマンドインターフェースの機能性を拡張させる事ことができます。

:::term
=== Plugins
plugins                      # list installed plugins
plugins:install <url>        # install the plugin from the specified git url
plugins:uninstall <url/name> # remove the specified plugin
plugins:update <url/name>    # update a plugin, if specified, or update all plugins

プラグインのインストール

プラグインをインストールするために、プラグインのGitのURLを知っている必要があります。heroku plugins:installコマンドを使って、Gitのリポジトリを指定します :

:::term
$ heroku plugins:install git://github.com/ddollar/heroku-accounts.git

プラグインの一覧表示

現在インストールされているプラグインの一覧を見るためには以下のコマンドを入力します :

:::term
$ heroku plugins
=== Installed Plugins
heroku-accounts

プラグインの削除

:::term
$ heroku plugins:uninstall heroku-accounts

プラグインの更新

インストールされている全てのプラグインを更新するためには、以下のコマンドを入力します :

:::term
$ heroku plugins:update

特定のプラグインを更新するためには以下のようにします :

:::term
$ heroku plugins:update heroku-accounts
Clone this wiki locally