Skip to content

Commit

Permalink
Merge pull request #18 from IoraHealth/pr-hex
Browse files Browse the repository at this point in the history
Get things rolling for hex.
  • Loading branch information
patricksrobertson committed Jan 11, 2016
2 parents a8dae30 + 47cfa26 commit c7d29a9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
8 changes: 8 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The MIT License (MIT)
Copyright (c) 2015 Iora Health

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.
12 changes: 10 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ defmodule Braise.Mixfile do

def project do
[app: :braise,
version: "0.0.1",
version: "0.1.0",
elixir: "~> 1.0",
escript: escript_config,
deps: deps]
description: "A library that converts JSON Schema into ember models/adapters.",
deps: deps,
package: package]
end

# Configuration for the OTP application
Expand All @@ -32,4 +34,10 @@ defmodule Braise.Mixfile do
defp escript_config do
[ main_module: Braise.CLI ]
end

defp package do
[maintainers: ["Patrick Robertson", "Alex Rothenberg"],
licenses: ["MIT"],
links: %{github: "https://github.com/patricksrobertson/secure_random.ex"}]
end
end

0 comments on commit c7d29a9

Please sign in to comment.