Skip to content

Commit

Permalink
refactor: tweak description
Browse files Browse the repository at this point in the history
  • Loading branch information
hpopp committed Dec 28, 2024
1 parent 4e9fe35 commit 8be3f49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](https://raw.githubusercontent.com/codedge-llc/pigeon/master/docs/logo.png)

> HTTP2-compliant wrapper for sending iOS and Android push notifications.
> iOS (APNS), Android (FCM), and Amazon Android (ADM) push notifications for Elixir.
[![CI](https://github.com/codedge-llc/pigeon/actions/workflows/ci.yml/badge.svg)](https://github.com/codedge-llc/pigeon/actions/workflows/ci.yml)
[![Version](https://img.shields.io/hexpm/v/pigeon.svg)](https://hex.pm/packages/pigeon)
Expand Down
2 changes: 1 addition & 1 deletion lib/pigeon.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Pigeon do
@moduledoc """
HTTP2-compliant wrapper for sending iOS and Android push notifications.
iOS (APNS), Android (FCM), and Amazon Android (ADM) push notifications for Elixir.
## Getting Started
Expand Down
13 changes: 4 additions & 9 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
defmodule Pigeon.Mixfile do
use Mix.Project

@description "iOS (APNS), Android (FCM), and Amazon Android (ADM) push notifications for Elixir."
@name "Pigeon"
@source_url "https://github.com/codedge-llc/pigeon"
@version "2.0.1"

Expand All @@ -9,13 +11,13 @@ defmodule Pigeon.Mixfile do
app: :pigeon,
build_embedded: Mix.env() == :prod,
deps: deps(),
description: description(),
description: @description,
dialyzer: dialyzer(),
docs: docs(),
elixir: "~> 1.7",
elixirc_options: [warnings_as_errors: true],
elixirc_paths: elixirc_paths(Mix.env()),
name: "Pigeon",
name: @name,
package: package(),
preferred_cli_env: [
coveralls: :test,
Expand Down Expand Up @@ -79,13 +81,6 @@ defmodule Pigeon.Mixfile do
]
end

defp description do
"""
HTTP2-compliant wrapper for sending iOS (APNS), Android (FCM),
and Amazon Android (ADM) push notifications.
"""
end

defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG*"],
Expand Down

0 comments on commit 8be3f49

Please sign in to comment.