Current section

13 Versions

Jump to

Compare versions

4 files changed
+20 additions
-7 deletions
  @@ -1,8 +1,8 @@
1 1 # ex_dinheiro
2 2
3 - - master: [![Build Status](https://travis-ci.org/ramondelemos/ex_dinheiro.svg?branch=master)](https://travis-ci.org/ramondelemos/ex_dinheiro)[![Coverage Status](https://coveralls.io/repos/github/ramondelemos/ex_dinheiro/badge.svg?branch=master)](https://coveralls.io/github/ramondelemos/ex_dinheiro)
3 + - master: [![Build Status](https://travis-ci.org/ramondelemos/ex_dinheiro.svg?branch=master)](https://travis-ci.org/ramondelemos/ex_dinheiro?branch=master)[![Coverage Status](https://coveralls.io/repos/github/ramondelemos/ex_dinheiro/badge.svg?branch=master)](https://coveralls.io/github/ramondelemos/ex_dinheiro?branch=master)
4 4
5 - - dev: [![Build Status](https://travis-ci.org/ramondelemos/ex_dinheiro.svg?branch=dev)](https://travis-ci.org/ramondelemos/ex_dinheiro)[![Coverage Status](https://coveralls.io/repos/github/ramondelemos/ex_dinheiro/badge.svg?branch=dev)](https://coveralls.io/github/ramondelemos/ex_dinheiro)
5 + - dev: [![Build Status](https://travis-ci.org/ramondelemos/ex_dinheiro.svg?branch=dev)](https://travis-ci.org/ramondelemos/ex_dinheiro?branch=dev)[![Coverage Status](https://coveralls.io/repos/github/ramondelemos/ex_dinheiro/badge.svg?branch=dev)](https://coveralls.io/github/ramondelemos/ex_dinheiro?branch=dev)
6 6
7 7 Biblioteca elixir para manipulação de dinheiro.
8 8
  @@ -14,12 +14,12 @@ by adding `dinheiro` to your list of dependencies in `mix.exs`:
14 14 ```elixir
15 15 def deps do
16 16 [
17 - {:dinheiro, "~> 0.1.0"}
17 + {:ex_dinheiro, "~> 0.1.0"}
18 18 ]
19 19 end
20 20 ```
21 21
22 22 Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
23 23 and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
24 - be found at [https://hexdocs.pm/dinheiro](https://hexdocs.pm/dinheiro).
24 + be found at [https://hexdocs.pm/ex_dinheiro](https://hexdocs.pm/ex_dinheiro).
  @@ -11,4 +11,4 @@
11 11 {<<"maintainers">>,[<<"Ramon de Lemos">>]}.
12 12 {<<"name">>,<<"ex_dinheiro">>}.
13 13 {<<"requirements">>,[]}.
14 - {<<"version">>,<<"0.1.0">>}.
14 + {<<"version">>,<<"0.1.1">>}.
  @@ -15,4 +15,17 @@ defmodule Dinheiro do
15 15 def hello do
16 16 :world
17 17 end
18 +
19 + @doc """
20 + Hello world 2.
21 +
22 + ## Examples
23 +
24 + iex> Dinheiro.hello2
25 + :world
26 +
27 + """
28 + def hello2 do
29 + :world
30 + end
18 31 end
  @@ -1,7 +1,7 @@
1 1 defmodule Dinheiro.MixProject do
2 2 use Mix.Project
3 3
4 - @version "0.1.0"
4 + @version "0.1.1"
5 5 @github_url "https://github.com/ramondelemos/ex_dinheiro"
6 6
7 7 def project do
  @@ -31,7 +31,7 @@ defmodule Dinheiro.MixProject do
31 31 defp deps do
32 32 [
33 33 {:excoveralls, "~> 0.8.1", only: [:dev, :test]},
34 - {:ex_doc, "~> 0.18", only: [:dev, :docs]},
34 + {:ex_doc, "~> 0.18", only: [:dev, :docs]}
35 35 ]
36 36 end