Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitsh committed Oct 16, 2019
1 parent 464840a commit 8a4ca9c
Show file tree
Hide file tree
Showing 8 changed files with 137 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .formatter.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Used by "mix format"
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# The directory Mix will write compiled artifacts to.
/_build/

# If you run "mix test --cover", coverage assets end up here.
/cover/

# The directory Mix downloads your dependencies sources to.
/deps/

# Where third-party dependencies like ExDoc output generated docs.
/doc/

# Ignore .fetch files in case you like to edit your project deps locally.
/.fetch

# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump

# Also ignore archive artifacts (built via "mix archive.build").
*.ez

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

23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Fluex

Currently a placeholder

**TODO: Add description**

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `fluex` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:fluex, "~> 0.1.0"}
]
end
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/fluex](https://hexdocs.pm/fluex).

18 changes: 18 additions & 0 deletions lib/fluex.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
defmodule Fluex do
@moduledoc """
Documentation for Fluex.
"""

@doc """
Hello world.
## Examples
iex> Fluex.hello()
:world
"""
def hello do
:world
end
end
19 changes: 19 additions & 0 deletions lib/fluex/application.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
defmodule Fluex.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false

use Application

def start(_type, _args) do
children = [
# Starts a worker by calling: Fluex.Worker.start_link(arg)
# {Fluex.Worker, arg}
]

# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Fluex.Supervisor]
Supervisor.start_link(children, opts)
end
end
40 changes: 40 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
defmodule Fluex.MixProject do
use Mix.Project

def project do
[
app: :fluex,
version: "0.0.1",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "fluent-rs NIF localization/translation for Elixir",
package: package()
]
end

defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Kaitsh <[email protected]"],
licenses: ["Apache License 2.0"],
links: %{"GitHub" => "https://github.com/kaitsh/fluex"}
]
end

# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Fluex.Application, []}
]
end

# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end
8 changes: 8 additions & 0 deletions test/fluex_test.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
defmodule FluexTest do
use ExUnit.Case
doctest Fluex

test "greets the world" do
assert Fluex.hello() == :world
end
end
1 change: 1 addition & 0 deletions test/test_helper.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ExUnit.start()

0 comments on commit 8a4ca9c

Please sign in to comment.