Welcome to mirror list, hosted at ThFree Co, Russian Federation.

moses-1.3-1.rockspec « rockspec - github.com/Yonaba/Moses.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45aecfacd3467a9a6fb67a088476381bc4fdaed4 (plain)
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
package = "moses"
version = "1.3-1"
source = {
   url = "https://github.com/Yonaba/Moses/archive/Moses-1.3.0.tar.gz",
   dir = "Moses-Moses-1.3.0"
}
description = {
   summary = "Utility library for functional programming in Lua",
   detailed = [[
      A utility library provinding handy resources for common programming tasks and support for functional 
	  programming. It extends the built-in Lua table library, making easier operations on arrays, lists, 
	  collections and objects, through 85 weird, bizarre and odd functions.
   ]],
   homepage = "http://yonaba.github.com/Moses/",
   license = "MIT <http://www.opensource.org/licenses/mit-license.php>"
}
dependencies = {
   "lua >= 5.1"
}
build = {
   type = "builtin",
   modules = {
      moses = "moses.lua"
   }
}