Skip to content

Commit e02bbe5

Browse files
committed
Prepare for a hex publish
1 parent d850ca4 commit e02bbe5

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ First, add Razorpay to your mix.exs dependencies:
88

99
```elixir
1010
def deps do
11-
[{:razorpay, "~> 0.1.0"}]
11+
[{:razorpay, "~> 0.5.0"}]
1212
end
1313
```
1414

mix.exs

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ defmodule Razorpay.Mixfile do
33

44
def project do
55
[app: :razorpay,
6-
version: "0.1.0",
6+
version: "0.5.0",
77
elixir: "~> 1.3",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,
1010
preferred_cli_env: [
1111
vcr: :test, "vcr.delete": :test, "vcr.check": :test, "vcr.show": :test
12-
],
12+
],
13+
description: description(),
14+
package: package(),
1315
deps: deps()]
1416
end
1517

@@ -23,4 +25,15 @@ defmodule Razorpay.Mixfile do
2325
{:exvcr, "~> 0.8", only: :test},
2426
{:mock, "~> 0.1.1", only: :test}]
2527
end
28+
29+
defp description do
30+
"Elixir bindings for the Razorpay API."
31+
end
32+
33+
defp package do
34+
[name: :razorpay,
35+
maintainers: ["Vignesh Rajagopalan"],
36+
licenses: ["MIT"],
37+
links: %{"GitHub" => "https://github.com/aarvay/razorpay-elixir"}]
38+
end
2639
end

0 commit comments

Comments
 (0)