1- defmodule NebulexCachexAdapter .MixProject do
1+ defmodule NebulexAdaptersCachex .MixProject do
22 use Mix.Project
33
4- @ version "0.1.0"
4+ @ version "1.0.0-dev"
5+ @ source_url "https://github.com/cabol/nebulex_adapters_cachex"
56
67 def project do
78 [
8- app: :nebulex_cachex_adapter ,
9+ app: :nebulex_adapters_cachex ,
910 version: @ version ,
1011 elixir: "~> 1.9" ,
1112 elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
1213 aliases: aliases ( ) ,
1314 deps: deps ( ) ,
1415
15- # Docs
16- name: "NebulexCachexAdapter" ,
17- docs: docs ( ) ,
18-
1916 # Testing
2017 test_coverage: [ tool: ExCoveralls ] ,
2118 preferred_cli_env: [
@@ -31,7 +28,14 @@ defmodule NebulexCachexAdapter.MixProject do
3128
3229 # Hex
3330 package: package ( ) ,
34- description: "Nebulex adapter for Cachex"
31+ description: "Nebulex adapter for Cachex" ,
32+
33+ # Docs
34+ docs: [
35+ main: "Nebulex.Adapters.Cachex" ,
36+ source_ref: "v#{ @ version } " ,
37+ source_url: @ source_url
38+ ]
3539 ]
3640 end
3741
@@ -86,19 +90,10 @@ defmodule NebulexCachexAdapter.MixProject do
8690
8791 defp package do
8892 [
89- name: :nebulex_cachex_adapter ,
93+ name: :nebulex_adapters_cachex ,
9094 maintainers: [ "Carlos Bolanos" ] ,
9195 licenses: [ "MIT" ] ,
92- links: % { "GitHub" => "https://github.com/cabol/nebulex_cachex_adapter" }
93- ]
94- end
95-
96- defp docs do
97- [
98- main: "NebulexCachexAdapter" ,
99- source_ref: "v#{ @ version } " ,
100- canonical: "http://hexdocs.pm/nebulex_cachex_adapter" ,
101- source_url: "https://github.com/cabol/nebulex_cachex_adapter"
96+ links: % { "GitHub" => @ source_url }
10297 ]
10398 end
10499
0 commit comments