package = "mediator_lua"
version = "1.1-3"
source = {
  url = "https://github.com/Olivine-Labs/mediator_lua/archive/v1.1.tar.gz",
  dir = "mediator_lua-1.1"
}
description = {
  summary = "Event handling through channels",
  detailed = [[
    mediator_lua allows you to subscribe and publish to a central object so
    you can decouple function calls in your application. It's as simple as
    mediator:subscribe("channel", function). Supports namespacing, predicates,
    and more.
  ]],
  homepage = "http://olivinelabs.com/mediator_lua/",
  license = "MIT <http://opensource.org/licenses/MIT>"
}
dependencies = {
  "lua >= 5.1"
}
build = {
  type = "builtin",
   modules = {
    mediator = "src/mediator.lua"
  }
}
