Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch the list method to index method for new heroku cli, This resolves #4 #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/heroku_herocutter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def list_with_herocutter
end
end

alias_method :list_without_herocutter, :list
alias_method :list, :list_with_herocutter
alias_method :list_without_herocutter, :index
alias_method :index, :list_with_herocutter

private
# determine if they passed in a plugin name or uri
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/heroku_herocutter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def push_command(uri = nil, name = nil)

describe "on plugin list" do
def list_command
Heroku::Command.run("plugins:list", [@option])
Heroku::Command.run("plugins", [@option])
end

describe "when listing remote plugins" do
Expand Down