File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ First, add Razorpay to your mix.exs dependencies:
88
99``` elixir
1010def deps do
11- [{:razorpay , " ~> 0.1 .0" }]
11+ [{:razorpay , " ~> 0.5 .0" }]
1212end
1313```
1414
Original file line number Diff line number Diff 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
2639end
You can’t perform that action at this time.
0 commit comments