Skip to content

Commit

Permalink
added Copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfa committed Nov 29, 2010
1 parent f92f770 commit 1812fff
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 13 deletions.
14 changes: 7 additions & 7 deletions app_sup.erl
@@ -1,10 +1,3 @@
%%% -------------------------------------------------------------------
%%% Author : {{author}} {{email}}
%%% Description :
%%%
%%% Created : {{date}}
%%% -------------------------------------------------------------------

%% Copyright 2010 {{author}}
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -18,6 +11,13 @@
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.

%%% -------------------------------------------------------------------
%%% Author : {{author}} {{email}}
%%% Description :
%%%
%%% Created : {{date}}
%%% -------------------------------------------------------------------
-module({{module}}).

-behaviour(application).
Expand Down
20 changes: 20 additions & 0 deletions common_SUITE.erl
@@ -1,3 +1,23 @@
%% Copyright 2010 {{author}}
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.

%%% -------------------------------------------------------------------
%%% Author : {{author}} {{email}}
%%% Description :
%%%
%%% Created : {{date}}
%%% -------------------------------------------------------------------
-module({{module}}_SUITE).
-compile(export_all).

Expand Down
12 changes: 6 additions & 6 deletions genserver.erl
@@ -1,9 +1,3 @@
%%% -------------------------------------------------------------------
%%% Author : {{author}} {{email}}
%%% Description :
%%%
%%% Created : {{date}}
%%% -------------------------------------------------------------------
%% Copyright 2010 {{author}}
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -18,6 +12,12 @@
%% See the License for the specific language governing permissions and
%% limitations under the License.

%%% -------------------------------------------------------------------
%%% Author : {{author}} {{email}}
%%% Description :
%%%
%%% Created : {{date}}
%%% -------------------------------------------------------------------
-module({{srvid}}).

-behaviour(gen_server).
Expand Down
38 changes: 38 additions & 0 deletions modul.erl
@@ -0,0 +1,38 @@
%% Copyright 2010 {{author}}
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.

%%% -------------------------------------------------------------------
%%% Author : {{author}} {{email}}
%%% Description :
%%%
%%% Created : {{date}}
%%% -------------------------------------------------------------------
-module({{modul}}).

%% --------------------------------------------------------------------
%% Include files
%% --------------------------------------------------------------------
-include_lib("eunit/include/eunit.hrl").

%% --------------------------------------------------------------------
%% External exports
%% --------------------------------------------------------------------

%% --------------------------------------------------------------------
%%% Internal functions
%% --------------------------------------------------------------------

%% --------------------------------------------------------------------
%%% Test functions
%% --------------------------------------------------------------------
2 changes: 2 additions & 0 deletions modul.template
@@ -0,0 +1,2 @@
{variables, [{modul, "mymodul"}, {author, "Ulf"}, {date,""}, {email, "uaforum1@googlemail.com"}]}.
{template, "modul.erl", "src/{{modul}}.erl"}.

0 comments on commit 1812fff

Please sign in to comment.