Skip to content

Commit

Permalink
Add rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonaba committed Jul 14, 2014
1 parent d9a8971 commit 0a48779
Show file tree
Hide file tree
Showing 6 changed files with 158 additions and 0 deletions.
26 changes: 26 additions & 0 deletions rockspec/moses-1.3-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "moses"
version = "1.3-0"
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 complements 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/",
maintainer = "Roland Yonaba <roland.yonaba@gmail.com>",
license = "MIT <http://www.opensource.org/licenses/mit-license.php>"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["moses"] = "moses.lua"
}
}
25 changes: 25 additions & 0 deletions rockspec/moses-1.3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,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"
}
}
27 changes: 27 additions & 0 deletions rockspec/moses-1.3.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package = "moses"
version = "1.3.1-1"
source = {
url = "https://github.com/Yonaba/Moses/archive/Moses-1.3.1-1.tar.gz",
dir = "Moses-Moses-1.3.1-1"
}
description = {
summary = "Utility library for functional programming in Lua",
detailed = [[
A utility library provinding handy functions for common programming tasks and support for functional
programming. It complements the built-in Lua table library, making easier operations on arrays, lists,
collections and objects, through 88 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",
["moses_min"] = "moses_min.lua",
},
copy_directories = {"docs","specs"}
}
27 changes: 27 additions & 0 deletions rockspec/moses-1.3.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package = "moses"
version = "1.3.2-1"
source = {
url = "https://github.com/Yonaba/Moses/archive/Moses-1.3.2-1.tar.gz",
dir = "Moses-Moses-1.3.2-1"
}
description = {
summary = "Utility library for functional programming in Lua",
detailed = [[
A utility library provinding handy functions for common programming tasks and support for functional
programming. It complements the built-in Lua table library, making easier operations on arrays, lists,
collections and objects, through 88 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",
["moses_min"] = "moses_min.lua",
},
copy_directories = {"docs","specs"}
}
27 changes: 27 additions & 0 deletions rockspec/moses-1.3.2.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package = "moses"
version = "1.3.2.1-1"
source = {
url = "https://github.com/Yonaba/Moses/archive/Moses-1.3.2.1-1.tar.gz",
dir = "Moses-Moses-1.3.2.1-1"
}
description = {
summary = "Utility library for functional programming in Lua",
detailed = [[
A utility library provinding handy functions for common programming tasks and support for functional
programming. It complements the built-in Lua table library, making easier operations on arrays, lists,
collections and objects, through 88 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",
["moses_min"] = "moses_min.lua",
},
copy_directories = {"docs","specs"}
}
26 changes: 26 additions & 0 deletions rockspec/moses-1.4.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "moses"
version = "1.4.0-1"
source = {
url = "https://github.com/Yonaba/Moses/archive/Moses-1.4.0-1.tar.gz",
dir = "Moses-Moses-1.4.0-1"
}
description = {
summary = "Utility-belt library for functional programming in Lua",
detailed = [[
A utility-belt library for functional programming, which complements the built-in
Lua table library, making easier operations on arrays, lists, collections.
]],
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",
["moses_min"] = "moses_min.lua",
},
copy_directories = {"docs","specs"}
}

0 comments on commit 0a48779

Please sign in to comment.