this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove boilerplate

garrison 9f7af7bf 7ee14cee

-44
-1
.gitignore
··· 21 21 22 22 # Ignore package tarball (built via "mix hex.build"). 23 23 trinity-*.tar 24 -
-20
README.md
··· 1 1 # Trinity 2 - 3 - **TODO: Add description** 4 - 5 - ## Installation 6 - 7 - If [available in Hex](https://hex.pm/docs/publish), the package can be installed 8 - by adding `trinity` to your list of dependencies in `mix.exs`: 9 - 10 - ```elixir 11 - def deps do 12 - [ 13 - {:trinity, "~> 0.1.0"} 14 - ] 15 - end 16 - ``` 17 - 18 - Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) 19 - and published on [HexDocs](https://hexdocs.pm). Once published, the docs can 20 - be found at <https://hexdocs.pm/trinity>. 21 -
-16
lib/trinity.ex
··· 1 1 defmodule Trinity do 2 - @moduledoc """ 3 - Documentation for `Trinity`. 4 - """ 5 - 6 - @doc """ 7 - Hello world. 8 - 9 - ## Examples 10 - 11 - iex> Trinity.hello() 12 - :world 13 - 14 - """ 15 - def hello do 16 - :world 17 - end 18 2 end
-2
mix.exs
··· 21 21 # Run "mix help deps" to learn about dependencies. 22 22 defp deps do 23 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"} 26 24 ] 27 25 end 28 26 end
-5
test/trinity_test.exs
··· 1 1 defmodule TrinityTest do 2 2 use ExUnit.Case 3 - doctest Trinity 4 - 5 - test "greets the world" do 6 - assert Trinity.hello() == :world 7 - end 8 3 end