Update Mix plugin to Phoenix 1.3

Version 1.3 of the Pheonix Framework introduces changes to the mix tasks
used by the framework. In particular all tasks starting with "phoenix."
have been renamed to "phx.".
See http://phoenixframework.org/blog/phoenix-1-3-0-released for further
information about the 1.3.0 release.
This commit is contained in:
Alessandro Bellemo 2017-09-12 17:38:53 +02:00
commit 46e1d02f6b

View file

@ -38,15 +38,15 @@ _1st_arguments=(
'local.hex:Install hex locally' 'local.hex:Install hex locally'
'local.rebar:Install rebar locally' 'local.rebar:Install rebar locally'
'new:Create a new Elixir project' 'new:Create a new Elixir project'
'phoenix.digest:Digests and compress static files' 'phx.digest:Digests and compress static files'
'phoenix.gen.channel:Generates a Phoenix channel' 'phx.gen.channel:Generates a Phoenix channel'
'phoenix.gen.html:Generates controller, model and views for an HTML based resource' 'phx.gen.html:Generates controller, model and views for an HTML based resource'
'phoenix.gen.json:Generates a controller and model for a JSON based resource' 'phx.gen.json:Generates a controller and model for a JSON based resource'
'phoenix.gen.model:Generates an Ecto model' 'phx.gen.model:Generates an Ecto model'
'phoenix.gen.secret:Generates a secret' 'phx.gen.secret:Generates a secret'
'phoenix.new:Create a new Phoenix application' 'phx.new:Create a new Phoenix application'
'phoenix.routes:Prints all routes' 'phx.routes:Prints all routes'
'phoenix.server:Starts applications and their servers' 'phx.server:Starts applications and their servers'
'run:Run the given file or expression' 'run:Run the given file or expression'
"test:Run a project's tests" "test:Run a project's tests"
'--help:Describe available tasks' '--help:Describe available tasks'
@ -58,7 +58,7 @@ __task_list ()
local expl local expl
declare -a tasks declare -a tasks
tasks=(app.start archive archive.build archive.install archive.uninstall clean cmd compile compile.protocols deps deps.clean deps.compile deps.get deps.unlock deps.update do escript.build help hex hex.config hex.docs hex.info hex.key hex.outdated hex.owner hex.publish hex.search hex.user loadconfig local local.hex local.rebar new phoenix.digest phoenix.gen.channel phoenix.gen.html phoenix.gen.json phoenix.gen.model phoenix.gen.secret phoenix.new phoenix.routes phoenix.server run test) tasks=(app.start archive archive.build archive.install archive.uninstall clean cmd compile compile.protocols deps deps.clean deps.compile deps.get deps.unlock deps.update do escript.build help hex hex.config hex.docs hex.info hex.key hex.outdated hex.owner hex.publish hex.search hex.user loadconfig local local.hex local.rebar new phx.digest phx.gen.channel phx.gen.html phx.gen.json phx.gen.model phx.gen.secret phx.new phx.routes phx.server run test)
_wanted tasks expl 'help' compadd $tasks _wanted tasks expl 'help' compadd $tasks
} }