rxlua-scm-2.rockspec 665 B

123456789101112131415161718192021222324
  1. package = "rxlua"
  2. version = "scm-2"
  3. source = { url = "git://github.com/bjornbytes/RxLua.git" }
  4. description =
  5. {
  6. summary = "Reactive Extensions for Lua",
  7. homepage = "https://github.com/bjornbytes/RxLua/tree/master",
  8. license = "MIT/X11",
  9. maintainer = "[email protected]",
  10. detailed = [[
  11. RxLua gives Lua the power of Observables, which are data structures that represent a stream of values that arrive over time. They're very handy when dealing with events, streams of data, asynchronous requests, and concurrency.
  12. ]]
  13. }
  14. dependencies = { "lua >= 5.1" }
  15. build =
  16. {
  17. type = "builtin",
  18. modules = { rx = "rx.lua", },
  19. copy_directories = { "doc", "tests" }
  20. }