Packages
avrora
0.1.1-beta
0.30.2
0.30.1
0.30.0
0.29.2
0.29.1
0.29.0
0.28.0
0.27.0
0.26.0
0.25.0
0.24.2
0.24.1
0.24.0
0.23.0
0.22.0
0.21.1
0.21.0
0.20.0
0.19.0
0.18.1
0.18.0
0.17.0
0.16.0
0.15.0
0.14.1
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.1
0.9.0
0.8.1
0.8.0
0.7.1
0.7.0
0.6.0
0.5.1
0.5.0
0.4.0
0.3.1
0.3.0
0.2.2
0.2.1
0.2.0
0.1.1-beta
0.1.0-beta
An Elixir library for working with Avro messages conveniently. It supports local schema files and Confluent® schema registry.
Current section
47 Versions
Jump to
Current section
47 Versions
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 | ] |