added in module for semvar comparisons

This code implements comparisons using (list based) strings as
semantic versions. It follows the stadard dictated by semvar.org.

Signed-off-by: Eric Merritt <ericbmerritt@gmail.com>
This commit is contained in:
Martin J. Logan 2011-03-12 17:54:33 -06:00 committed by Eric Merritt
parent 251d8543b9
commit 9e6f98ba81
3 changed files with 101 additions and 3 deletions

View file

@ -1,7 +1,11 @@
%% -*- mode: Erlang; fill-column: 75; comment-column: 50; -*-
{application, erlware_commons,
[{description, "Additional standard library for Erlang"},
{vsn, "0.0.1"},
{modules, [ec_lists]},
{vsn, "0.1.0"},
{modules, [
ec_lists,
ec_string,
ec_semver
]},
{registered, []},
{applications, [kernel, stdlib]}]}.