Current section

47 Versions

Jump to

Compare versions

3 files changed
+13 additions
-5 deletions
  @@ -1,5 +1,5 @@
1 1 <p align="center">
2 - <img width=200 src="/assets/logo.png"/>
2 + <img width=200 id="avroraLogo" src="/assets/logo.png"/>
3 3 <h1 align="center">Avrora</h1>
4 4 </p>
  @@ -1,7 +1,7 @@
1 1 {<<"app">>,<<"avrora">>}.
2 2 {<<"build_tools">>,[<<"mix">>]}.
3 3 {<<"description">>,
4 - <<"Avrora is an Elixir library for convenient work with AVRO messages and schemas.\nIt was influenced by [AvroTurf](https://github.com/dasch/avro_turf) Ruby gem.">>}.
4 + <<"Avrora is an Elixir library for convenient work with AVRO messages and schemas.\nIt was influenced by AvroTurf Ruby gem.">>}.
5 5 {<<"elixir">>,<<"~> 1.6">>}.
6 6 {<<"files">>,
7 7 [<<"lib">>,<<"lib/aurora">>,<<"lib/aurora/encoder.ex">>,
  @@ -27,4 +27,4 @@
27 27 {<<"optional">>,false},
28 28 {<<"repository">>,<<"hexpm">>},
29 29 {<<"requirement">>,<<"~> 0.1.0-beta.6">>}]]}.
30 - {<<"version">>,<<"0.1.0-beta">>}.
30 + {<<"version">>,<<"0.1.1-beta">>}.
  @@ -5,7 +5,7 @@ defmodule Avrora.MixProject do
5 5 [
6 6 app: :avrora,
7 7 # Let's wait for non-beta avro_ex or replace it?
8 - version: "0.1.0-beta",
8 + version: "0.1.1-beta",
9 9 elixir: "~> 1.6",
10 10 description: description(),
11 11 package: package(),
  @@ -39,7 +39,7 @@ defmodule Avrora.MixProject do
39 39 defp description do
40 40 """
41 41 Avrora is an Elixir library for convenient work with AVRO messages and schemas.
42 - It was influenced by [AvroTurf](https://github.com/dasch/avro_turf) Ruby gem.
42 + It was influenced by AvroTurf Ruby gem.
43 43 """
44 44 end
45 45
  @@ -66,6 +66,14 @@ defmodule Avrora.MixProject do
66 66 main: "readme",
67 67 logo: "assets/logo.png",
68 68 source_url: "https://github.com/Strech/avrora",
69 + before_closing_body_tag: fn _format ->
70 + """
71 + <script type="text/javascript">
72 + var image = document.getElementById("avroraLogo");
73 + image.src = image.getAttribute("src").replace("/assets", "assets");
74 + </script>
75 + """
76 + end,
69 77 extras: [
70 78 "README.md"
71 79 ]