a small incremental UI library for the web
javascript web ui
1
fork

Configure Feed

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

Remove boilerplate

garrison 379c1e7c 87f9edd1

+2 -46
-1
.gitignore
··· 21 21 22 22 # Ignore package tarball (built via "mix hex.build"). 23 23 noir-*.tar 24 -
-20
README.md
··· 1 1 # Noir 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 `noir` to your list of dependencies in `mix.exs`: 9 - 10 - ```elixir 11 - def deps do 12 - [ 13 - {:noir, "~> 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/noir>. 21 -
-16
lib/noir.ex
··· 1 1 defmodule Noir do 2 - @moduledoc """ 3 - Documentation for `Noir`. 4 - """ 5 - 6 - @doc """ 7 - Hello world. 8 - 9 - ## Examples 10 - 11 - iex> Noir.hello() 12 - :world 13 - 14 - """ 15 - def hello do 16 - :world 17 - end 18 2 end
+2 -4
mix.exs
··· 7 7 version: "0.1.0", 8 8 elixir: "~> 1.19", 9 9 start_permanent: Mix.env() == :prod, 10 - deps: deps() 10 + deps: deps(), 11 11 ] 12 12 end 13 13 14 14 # Run "mix help compile.app" to learn about applications. 15 15 def application do 16 16 [ 17 - extra_applications: [:logger] 17 + extra_applications: [:logger], 18 18 ] 19 19 end 20 20 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/noir_test.exs
··· 1 1 defmodule NoirTest do 2 2 use ExUnit.Case 3 - doctest Noir 4 - 5 - test "greets the world" do 6 - assert Noir.hello() == :world 7 - end 8 3 end