Skip to content

Commit

Permalink
proper version
Browse files Browse the repository at this point in the history
  • Loading branch information
epappas committed Jan 24, 2015
1 parent b0334ea commit 8544907
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 0 deletions.
47 changes: 47 additions & 0 deletions package.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
%%% -*- erlang -*-
%%%-------------------------------------------------------------------
%%% @author Evangelos Pappas <epappas@evalonlabs.com>
%%% @copyright (C) 2015, evalonlabs
%%% The MIT License (MIT)
%%%
%%% Copyright (c) 2015 Evangelos Pappas
%%%
%%% Permission is hereby granted, free of charge, to any person obtaining a copy
%%% of this software and associated documentation files (the "Software"), to deal
%%% in the Software without restriction, including without limitation the rights
%%% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
%%% copies of the Software, and to permit persons to whom the Software is
%%% furnished to do so, subject to the following conditions:
%%%
%%% The above copyright notice and this permission notice shall be included in all
%%% copies or substantial portions of the Software.
%%%
%%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
%%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
%%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
%%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
%%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
%%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
%%% SOFTWARE.
%%% @doc
%%%
%%% @end
%%%-------------------------------------------------------------------

[
{name, "erl_streams"},
{descriptio, "Streams in Erlang"},
{version, "0.0.1"},
{keywords, ["streams"]},
{dependencies, []},
{licenses, ["MIT"]},
{author, "Evangelos Pappas <epappas@evalonlabs.com>"},
{contributors, [
[{name, "Evangelos Pappas"}, {email, "epappas@evalonlabs.com"}]
]},
{maintainers, [
[{name, "Evangelos Pappas"}, {email, "epappas@evalonlabs.com"}]
]},
{repository, [{type, git}, {url, "https://github.com/epappas/erl_streams.git"}]},
{homepage, "https://github.com/epappas/erl_streams"}
].
13 changes: 13 additions & 0 deletions package.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Expm.Package.new(
name: "erl_streams",
description: "Streams in Erlang",
version: "0.0.1",
keywords: ["streams"],
dependencies: [],
licenses: [[name: "MIT", file: "LICENSE"]],
contributors: [],
maintainers: [
[name: "Evangelos Pappas", email: "epappas@evalonlabs.com"]
],
repositories: [[github: "epappas/erl_streams", tag: "0.0.1"]]
)
Binary file added rebar
Binary file not shown.
6 changes: 6 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{erl_opts, [debug_info, fail_on_warning, {d, 'WITH_JIFFY'}]}.

{deps_dir, "deps"}.
{deps, []}.
{cover_enabled, true}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
1 change: 1 addition & 0 deletions src/gen_stream.erl
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

-module(gen_stream).
-author("epappas").
-vsn("0.0.1").

-behaviour(gen_fsm).

Expand Down

0 comments on commit 8544907

Please sign in to comment.