-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` $ git grep -nPi copyright \ | perl -nE 'print if /copyright/i && /\d{4}/' \ | awk -F: '{print $1}' \ | xargs -I {} sh -c 'year=`date +"%Y"`; sed -i -e "/[Cc]opyright/s/\-[[:digit:]]\{4\}/-${year}/; \ /[Cc]opyright/s/ [[:digit:]]\{4\}\( \|,\)/ ${year}\1/" {}' ```
- Loading branch information
1 parent
a54f062
commit d3d690a
Showing
18 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
%% -*- erlang-indent-level: 4; indent-tabs-mode: nil; fill-column: 80 -*- | ||
%%% Copyright 2012 Erlware, LLC. All Rights Reserved. | ||
%%% Copyright 2024 Erlware, LLC. All Rights Reserved. | ||
%%% | ||
%%% This file is provided to you under the Apache License, | ||
%%% Version 2.0 (the "License"); you may not use this file | ||
|
@@ -16,7 +16,7 @@ | |
%%% under the License. | ||
%%%--------------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright (C) 2012 Erlware, LLC. | ||
%%% @copyright (C) 2024 Erlware, LLC. | ||
|
||
-define(EC_ERROR, 0). | ||
-define(EC_WARN, 1). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2011 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% provides an implementation of ec_dictionary using an association | ||
%%% list as a basy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
%% -*- erlang-indent-level: 4; indent-tabs-mode: nil; fill-column: 80 -*- | ||
%%% Copyright 2012 Erlware, LLC. All Rights Reserved. | ||
%%% Copyright 2024 Erlware, LLC. All Rights Reserved. | ||
%%% | ||
%%% This file is provided to you under the Apache License, | ||
%%% Version 2.0 (the "License"); you may not use this file | ||
|
@@ -16,7 +16,7 @@ | |
%%% under the License. | ||
%%%--------------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright (C) 2012 Erlware, LLC. | ||
%%% @copyright (C) 2024 Erlware, LLC. | ||
%%% | ||
%%% @doc This provides simple output functions for command line apps. You should | ||
%%% use this to talk to the users if you are writing code for the system | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
%% -*- erlang-indent-level: 4; indent-tabs-mode: nil; fill-column: 80 -*- | ||
%%% Copyright 2012 Erlware, LLC. All Rights Reserved. | ||
%%% Copyright 2024 Erlware, LLC. All Rights Reserved. | ||
%%% | ||
%%% This file is provided to you under the Apache License, | ||
%%% Version 2.0 (the "License"); you may not use this file | ||
|
@@ -16,7 +16,7 @@ | |
%%% under the License. | ||
%%%--------------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright (C) 2012 Erlware, LLC. | ||
%%% @copyright (C) 2024 Erlware, LLC. | ||
%%% | ||
-module(ec_cnv). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2011 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% This provides an implementation of the ec_dictionary type using | ||
%%% erlang dicts as a base. The function documentation for | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2011 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% A module that supports association of keys to values. A map cannot | ||
%%% contain duplicate keys; each key can map to at most one value. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2011 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% This provides an implementation of the type ec_dictionary using | ||
%%% gb_trees as a backin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2011 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% This provides an implementation of the ec_vsn for git. That is | ||
%%% it is capable of returning a semver for a git repository | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2011 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% This provides an implementation of the ec_dictionary type using | ||
%%% erlang orddicts as a base. The function documentation for | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%% vi:ts=4 sw=4 et | ||
%%%------------------------------------------------------------------- | ||
%%% @author Eric Merritt <[email protected]> | ||
%%% @copyright 2014 Erlware, LLC. | ||
%%% @copyright 2024 Erlware, LLC. | ||
%%% @doc | ||
%%% Provides a signature to manage returning semver formatted versions | ||
%%% from various version control repositories. | ||
|