Skip to content

Commit

Permalink
Rename package to tabler_icons
Browse files Browse the repository at this point in the history
  • Loading branch information
13ue committed Nov 14, 2022
1 parent 532cc5f commit e0f17c8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ erl_crash.dump
*.ez

# Ignore package tarball (built via "mix hex.build").
ex_tabler_icons-*.tar
tabler_icons-*.tar

# Temporary files, for example, from tests.
/tmp/
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# ExTablerIcons
# TablerIcons

[Tabler Icons](tabler-icons.io) are free and open source icons. This package provides Elixir functions in order to use [Tabler Icons](tabler-icons.io) in your HTML, styled with arbitrary classes.

This package is strongly inspired by [herocicons_elixir](https://github.com/mveytsman/heroicons_elixir).

## Installation

The package can be installed by adding `ex_tabler_icons` to your list of dependencies in `mix.exs`:
The package can be installed by adding `tabler_icons` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:ex_tabler_icons, "~> 0.1.0"}
{:tabler_icons, "~> 0.1.0"}
]
end
```
Expand Down
5 changes: 0 additions & 5 deletions lib/ex_tabler_icons.ex

This file was deleted.

4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule ExTablerIcons.MixProject do
defmodule TablerIcons.MixProject do
use Mix.Project

@source_url "https://github.com/sourceboat/ex_tabler_icons"
Expand All @@ -21,7 +21,7 @@ defmodule ExTablerIcons.MixProject do

def project do
[
app: :ex_tabler_icons,
app: :tabler_icons,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
Expand Down
6 changes: 3 additions & 3 deletions test/ex_tabler_icons_test.exs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
defmodule ExTablerIconsTest do
defmodule TablerIconsTest do
use ExUnit.Case
doctest ExTablerIcons
doctest TablerIcons

test "greets the world" do
assert ExTablerIcons.hello() == :world
assert TablerIcons.hello() == :world
end
end

0 comments on commit e0f17c8

Please sign in to comment.