Current section
27 Versions
Jump to
Current section
27 Versions
Compare versions
4
files changed
+31
additions
-4
deletions
| @@ -0,0 +1,25 @@ | |
| 1 | + Copyright (c) 2015 Chris Kelly |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | + of this software and associated documentation files (the "Software"), to deal |
| 7 | + in the Software without restriction, including without limitation the rights |
| 8 | + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | + copies of the Software, and to permit persons to whom the Software is |
| 10 | + furnished to do so, subject to the following conditions: |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + The above copyright notice and this permission notice shall be included in |
| 15 | + all copies or substantial portions of the Software. |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 20 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 21 | + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 22 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 23 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 24 | + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 25 | + THE SOFTWARE. |
| @@ -23,7 +23,7 @@ For the latest release: | |
| 23 23 | |
| 24 24 | ```elixir |
| 25 25 | defp deps do |
| 26 | - {:canary, "~> 0.10.0"} |
| 26 | + {:canary, "~> 0.10.1"} |
| 27 27 | end |
| 28 28 | ``` |
| 29 29 | |
| @@ -181,3 +181,5 @@ For example, when authorizing access to the `Post` resource, | |
| 181 181 | ``` |
| 182 182 | def can?(%User{}, :index, %Post{}), do: true |
| 183 183 | ``` |
| 184 | + ## License |
| 185 | + MIT License. Copyright 2015 Chris Kelly. |
| @@ -5,7 +5,7 @@ | |
| 5 5 | {<<"elixir">>,<<"~> 1.0 or ~> 1.1-beta">>}. |
| 6 6 | {<<"files">>, |
| 7 7 | [<<"lib/canary.ex">>,<<"lib/canary/plugs.ex">>,<<"mix.exs">>,<<"README.md">>, |
| 8 | - <<"CHANGELOG.md">>]}. |
| 8 | + <<"LICENSE">>,<<"CHANGELOG.md">>]}. |
| 9 9 | {<<"licenses">>,[<<"MIT">>]}. |
| 10 10 | {<<"links">>,[{<<"GitHub">>,<<"https://github.com/cpjk/canary">>}]}. |
| 11 11 | {<<"maintainers">>,[<<"Chris Kelly">>]}. |
| @@ -23,4 +23,4 @@ | |
| 23 23 | [{<<"app">>,<<"plug">>}, |
| 24 24 | {<<"optional">>,false}, |
| 25 25 | {<<"requirement">>,<<">= 0.11.3">>}]}]}. |
| 26 | - {<<"version">>,<<"0.10.0">>}. |
| 26 | + {<<"version">>,<<"0.10.1">>}. |
| @@ -3,7 +3,7 @@ defmodule Canary.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :canary, |
| 6 | - version: "0.10.0", |
| 6 | + version: "0.10.1", |
| 7 7 | elixir: "~> 1.0 or ~> 1.1-beta", |
| 8 8 | package: package, |
| 9 9 | description: """ |