File: mediator_lua-1.1.2-0.rockspec

package info (click to toggle)
lua-mediator 1.1.2-0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package = "mediator_lua"
version = "1.1.2-0"
source = {
  url = "https://github.com/Olivine-Labs/mediator_lua/archive/v1.1.2-0.tar.gz",
  dir = "mediator_lua-1.1.2-0"
}
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"
  }
}