rxlua-scm-1.rockspec 632 B

12345678910111213141516171819202122
  1. package = "rxlua"
  2. version = "scm-1"
  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. build =
  15. {
  16. type = "builtin",
  17. modules = { rx = "rx.lua", },
  18. copy_directories = { "doc", "tests" }
  19. }