rxlua-0.0.3-1.rockspec 648 B

1234567891011121314151617181920212223
  1. package = "rxlua"
  2. version = "0.0.3-1"
  3. source = {
  4. url = "git://github.com/bjornbytes/RxLua.git",
  5. tag = "v0.0.3"
  6. }
  7. description = {
  8. summary = "Reactive Extensions for Lua",
  9. homepage = "https://github.com/bjornbytes/RxLua",
  10. license = "MIT/X11",
  11. maintainer = "[email protected]",
  12. detailed = [[
  13. 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.
  14. ]]
  15. }
  16. build = {
  17. type = "builtin",
  18. modules = { rx = "rx.lua", },
  19. copy_directories = { "doc", "tests" }
  20. }