Skip to content

Commit 6a710af

Browse files
authored
Merge pull request #16 from Kartstig/mp-transfer
Convert all MP urls
2 parents ad4ee77 + 460b1bf commit 6a710af

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ further defined and clarified by project maintainers.
9191
### Enforcement
9292

9393
Instances of abusive, harassing, or otherwise unacceptable behavior may be
94-
reported by contacting the project team at herman@matchedpattern.com. All
94+
reported by contacting the project team at kartstig@gmail.com. All
9595
complaints will be reviewed and investigated and will result in a response that
9696
is deemed necessary and appropriate to the circumstances. The project team is
9797
obligated to maintain confidentiality with regard to the reporter of an incident.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ExHealth ![ExHealth](logo.png)
22
> A health check utility for any OTP application
33
4-
[![Build Status](https://circleci.com/gh/MatchedPattern/ex_health/tree/master.svg?style=svg&circle-token=8ed28fee90111e2a034b0d71e0fcf8ae18bba641)](https://circleci.com/gh/MatchedPattern/ex_health/tree/master) [![codecov](https://codecov.io/gh/MatchedPattern/ex_health/branch/master/graph/badge.svg)](https://codecov.io/gh/MatchedPattern/ex_health)
4+
[![Build Status](https://circleci.com/gh/Kartstig/ex_health/tree/master.svg?style=svg&circle-token=8ed28fee90111e2a034b0d71e0fcf8ae18bba641)](https://circleci.com/gh/Kartstig/ex_health/tree/master) [![codecov](https://codecov.io/gh/Kartstig/ex_health/branch/master/graph/badge.svg)](https://codecov.io/gh/Kartstig/ex_health)
55

66
ExHealth runs a supervised GenServer that performs routine health checks which
77
are configurable to your application. Check out [ExHealth.Plug](lib/ex_health/plug.ex)

lib/ex_health.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
defmodule ExHealth do
22
@moduledoc """
3-
[![CircleCI](https://circleci.com/gh/MatchedPattern/ex_health/tree/master.svg?style=svg&circle-token=8ed28fee90111e2a034b0d71e0fcf8ae18bba641)](https://circleci.com/gh/MatchedPattern/ex_health/tree/master) [![codecov](https://codecov.io/gh/MatchedPattern/ex_health/branch/master/graph/badge.svg)](https://codecov.io/gh/MatchedPattern/ex_health)
3+
[![CircleCI](https://circleci.com/gh/Kartstig/ex_health/tree/master.svg?style=svg&circle-token=8ed28fee90111e2a034b0d71e0fcf8ae18bba641)](https://circleci.com/gh/Kartstig/ex_health/tree/master) [![codecov](https://codecov.io/gh/Kartstig/ex_health/branch/master/graph/badge.svg)](https://codecov.io/gh/Kartstig/ex_health)
44
55
ExHealth is a simple extensible health check utility that monitors your applications.
66

mix.exs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule ExHealth.MixProject do
55
[
66
app: :ex_health,
77
description: "A health check utility for any OTP application",
8-
version: "0.1.1",
8+
version: "0.1.2",
99
elixir: "~> 1.7",
1010
start_permanent: Mix.env() == :prod,
1111
test_coverage: [tool: ExCoveralls],
@@ -37,11 +37,11 @@ defmodule ExHealth.MixProject do
3737
defp docs do
3838
[
3939
name: "ExHealth",
40-
source_url: "https://github.com/MatchedPattern/ex_health",
40+
source_url: "https://github.com/Kartstig/ex_health",
4141
homepage_url: "https://hexdocs.pm/ex_health",
4242
docs: [
4343
main: "ExHealth",
44-
logo: "https://github.com/MatchedPattern/ex_health/logo.png",
44+
logo: "https://github.com/Kartstig/ex_health/logo.png",
4545
extras: ["README.md"]
4646
]
4747
]
@@ -52,10 +52,10 @@ defmodule ExHealth.MixProject do
5252
name: "ex_health",
5353
licenses: ["MIT"],
5454
links: %{
55-
git: "https://github.com/MatchedPattern/ex_health"
55+
git: "https://github.com/Kartstig/ex_health"
5656
},
5757
maintainers: ["Herman Singh"],
58-
source_url: "https://github.com/MatchedPattern/ex_health",
58+
source_url: "https://github.com/Kartstig/ex_health",
5959
homepage_url: "https://hexdocs.pm/ex_health"
6060
]
6161
end

0 commit comments

Comments
 (0)