File tree Expand file tree Collapse file tree 2 files changed +7
-27
lines changed
Expand file tree Collapse file tree 2 files changed +7
-27
lines changed Original file line number Diff line number Diff line change 2323
2424## Installation
2525
26- If [ available in Hex] ( https://hex.pm/docs/publish ) , the package can be installed
27- by adding ` assert_match ` to your list of dependencies in ` mix.exs ` :
28-
2926``` elixir
3027def deps do
3128 [
32- {:assert_match , " ~> 0.1.0" }
29+ # If available in Hex
30+ {:assert_match , " ~> 1.0" , only: [:test ]}
31+ # If not, or, if you need bleeding edge
32+ {:assert_match , github: " siiibo/assert_match" , ref: " main" , only: [:test ]}
3333 ]
3434end
3535```
36-
37- Documentation can be generated with [ ExDoc] ( https://github.com/elixir-lang/ex_doc )
38- and published on [ HexDocs] ( https://hexdocs.pm ) . Once published, the docs can
39- be found at < https://hexdocs.pm/assert_match > .
Original file line number Diff line number Diff line change @@ -4,25 +4,9 @@ defmodule AssertMatch.MixProject do
44 def project do
55 [
66 app: :assert_match ,
7- version: "0.1.0" ,
8- elixir: "~> 1.14" ,
9- start_permanent: Mix . env ( ) == :prod ,
10- deps: deps ( )
11- ]
12- end
13-
14- # Run "mix help compile.app" to learn about applications.
15- def application do
16- [
17- extra_applications: [ :logger ]
18- ]
19- end
20-
21- # Run "mix help deps" to learn about dependencies.
22- defp deps do
23- [
24- # {:dep_from_hexpm, "~> 0.3.0"},
25- # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
7+ version: "1.0.0" ,
8+ elixir: "~> 1.10" ,
9+ deps: [ ]
2610 ]
2711 end
2812end
You can’t perform that action at this time.
0 commit comments