This repository has been archived by the owner. It is now read-only.
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
removed ebin from gitignore, so the .app gets checked in
- Loading branch information
1 parent
ac0d74c
commit 199d33cb01c816a5fd9e9f8675e7f45632be148d
Showing
2 changed files
with
13 additions
and
1 deletion.
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
@@ -1,5 +1,5 @@ | ||
*.beam | ||
ebin | ||
ebin/*.beam | ||
_build/ | ||
lib/bcrypt/bcrypt | ||
|
||
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
@@ -0,0 +1,12 @@ | ||
%%% This is the application resource file (.app file) for the bcrypt | ||
%%% application. | ||
{application, bcrypt, | ||
[{description, "An Erlang wrapper for the OpenBSD password scheme, bcrypt."}, | ||
{vsn, "0.2.0"}, | ||
{modules, [bcrypt]}, | ||
{registered, [bcrypt]}, | ||
{env, []}, | ||
{applications, [kernel, stdlib, sasl, crypto]}, | ||
{mod, {bcrypt, []}} | ||
] | ||
}. |