Skip to content

Commit

Permalink
Fill out some more of the hex info
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neighman committed Jan 2, 2016
1 parent 9f1da33 commit f7d752b
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Version 0.1.0

Initial release
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2016 Daniel Neighman

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
42 changes: 29 additions & 13 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,31 +1,38 @@
defmodule StdJsonIo.Mixfile do
use Mix.Project

@version "0.1.0"
@url "https://github.com/hassox/std_json_io"
@maintainers ["Daniel Neighman"]

def project do
[app: :std_json_io,
version: "0.1.0",
name: "StdJsonIo",
version: @version,
package: @package,
elixir: "~> 1.1",
source_url: @url,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
maintainers: @maintainers,
description: "Application for managing and communicating with IO servers via JSON",
homepage_url: @url,
docs: docs,
deps: deps]
end

# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger, :porcelain]]
end

# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
def docs do
[
extras: ["README.md", "CHANGELOG.md"],
source_ref: "v#{@version}",
main: "extra-readme"
]
end

defp deps do
[
{:porcelain, "~> 2.0"},
Expand All @@ -34,4 +41,13 @@ defmodule StdJsonIo.Mixfile do
{:fs, "~> 0.9.1"},
]
end

defp package do
[
maintainers: @maintainers,
licenses: ["MIT"],
links: %{github: @url},
files: ~w(lib) ++ ~w(CHANGELOG.md LICENSE mix.exs README.md)
]
end
end

0 comments on commit f7d752b

Please sign in to comment.