Skip to content
This repository has been archived by the owner on Jul 15, 2020. It is now read-only.

Commit

Permalink
Added copyright holders.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Jun 19, 2015
1 parent 0389702 commit e80cbf3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
5 changes: 4 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Copyright (c) 2015, Anonymous <[email protected]>.
Copyright (c) 2009, Dave Smith <[email protected]> &
Tim Dysinger <[email protected]>
Copyright (c) 2014, 2015 Duncan McGreggor <[email protected]>

All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
20 changes: 12 additions & 8 deletions src/lfe-compile.erl
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
%% Copyright (c) 2009, Dave Smith <[email protected]> &
%% Tim Dysinger <[email protected]>
%% Copyright (c) 2014, 2015 Duncan McGreggor <[email protected]>
%%
-module('lfe-compile').
-behaviour(provider).

Expand All @@ -15,15 +19,15 @@
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
Provider = providers:create([
{name, compile}, % The 'user friendly' name of the task
{module, ?MODULE}, % The module implementation of the task
{name, compile},
{module, ?MODULE},
{namespace, lfe},
{bare, true}, % The task can be run by the user, always true
{deps, ?DEPS}, % The list of dependencies
{example, "rebar3 lfe compile"}, % How to use the plugin
{short_desc, "rebar compile for LFE"},
{desc, "The LFE compile rebar plugin"},
{opts, []} % list of options understood by the plugin
{bare, true},
{deps, ?DEPS},
{example, "rebar3 lfe compile"},
{short_desc, "rebar3 compile for LFE"},
{desc, "The LFE rebar3 compiler plugin"},
{opts, []}
]),
{ok, rebar_state:add_provider(State, Provider)}.

Expand Down

0 comments on commit e80cbf3

Please sign in to comment.