Packages

Griffin framework project generator. Provides a `mix grf.new` task to bootstrap a new Elixir application with Griffin dependencies and boilerplate code.

Current section

Files

Jump to
grf_new lib mix tasks local.grf.ex
Raw

lib/mix/tasks/local.grf.ex

defmodule Mix.Tasks.Local.Grf do
use Mix.Task
@shortdoc "Updates the Griffin project generator locally"
@moduledoc """
Updates the Griffin project generator locally.
$ mix local.grf
Accepts the same command line options as `archive.install hex grf_new`.
"""
@impl true
def run(args) do
Mix.Task.run("archive.install", ["hex", "grf_new" | args])
end
end