Update mix options to Elixir v1.0.3

This commit is contained in:
Anne-Gwenn Kettunen 2015-02-28 19:02:42 +01:00
commit 11a1999dca

View file

@ -5,28 +5,41 @@
local -a _1st_arguments local -a _1st_arguments
_1st_arguments=( _1st_arguments=(
'archive:Archive this project into a .ez file' mix # Run the default task (current: mix run)
'clean:Clean generated application files' mix archive # List all archives
'compile:Compile source files' mix archive.build # Archive this project into a .ez file
'deps:List dependencies and their status' mix archive.install # Install an archive locally
"deps.clean:Remove dependencies' files" mix archive.uninstall # Uninstall archives
'deps.compile:Compile dependencies' mix clean # Delete generated application files
'deps.get:Get all out of date dependencies' mix cmd # Executes the given command
'deps.unlock:Unlock the given dependencies' mix compile # Compile source files
'deps.update:Update dependencies' mix compile.protocols # Consolidates all protocols in all paths
'do:Executes the commands separated by comma' mix deps # List dependencies and their status
'escriptize:Generates an escript for the project' mix deps.clean # Remove the given dependencies' files
'help:Print help information for tasks' mix deps.compile # Compile dependencies
'local:List local tasks' mix deps.get # Get all out of date dependencies
'local.install:Install a task or an archive locally' mix deps.unlock # Unlock the given dependencies
'local.rebar:Install rebar locally' mix deps.update # Update the given dependencies
'local.uninstall:Uninstall local tasks or archives' mix do # Executes the tasks separated by comma
'local.hex:Install Hex locally' mix escript.build # Builds an escript for the project
'new:Creates a new Elixir project' mix help # Print help information for tasks
'run:Run the given file or expression' mix hex.config # Read or update hex config
"test:Run a project's tests" mix hex.docs # Publish docs for package
'--help:Describe available tasks' mix hex.info # Print hex information
'--version:Prints the Elixir version information' mix hex.key # Hex API key tasks
mix hex.owner # Hex package ownership tasks
mix hex.publish # Publish a new package version
mix hex.search # Search for package names
mix hex.user # Hex user tasks
mix loadconfig # Loads and persists the given configuration
mix local # List local tasks
mix local.hex # Install hex locally
mix local.rebar # Install rebar locally
mix new # Create a new Elixir project
mix run # Run the given file or expression
mix test # Run a project's tests
iex -S mix # Start IEx and run the default task
) )
__task_list () __task_list ()