From b6c41ff2f86f679675b95a780bfc6475e973d796 Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Tue, 21 Jan 2025 12:53:35 +0900 Subject: [PATCH] Make git behave --- .gitignore | 18 +++++++++++++++--- ebin/erl_base58.app | 7 +++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 ebin/erl_base58.app diff --git a/.gitignore b/.gitignore index 683a248..20177b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,15 @@ -ebin/ -deps/ - +.eunit +deps +*.o +*.beam +*.plt +*.swp +erl_crash.dump +ebin/*.beam +doc/*.html +doc/*.css +doc/edoc-info +doc/erlang.png +rel/example_project +.concrete/DEV_MODE +.rebar diff --git a/ebin/erl_base58.app b/ebin/erl_base58.app new file mode 100644 index 0000000..14e6ba1 --- /dev/null +++ b/ebin/erl_base58.app @@ -0,0 +1,7 @@ +{application,erl_base58, + [{description,"A simple implementation of a Base58 encoder and decoder for Integers and Binaries."}, + {registered,[]}, + {included_applications,[]}, + {applications,[stdlib,kernel]}, + {vsn,"0.1.1"}, + {modules,[base58]}]}.