-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparations for the release of v0.1.0
- Loading branch information
1 parent
782a6ce
commit 68ba088
Showing
2 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package = "lazylualinq" | ||
rockspec_format = "3.0" | ||
version = "0.1.0" | ||
source = { | ||
url = "git://github.com/Henkoglobin/lazylualinq", | ||
tag = "v0.1.0" | ||
} | ||
description = { | ||
summary = "LazyLuaLinq provides a simple, lazy implementation of linq-like functions for Lua.", | ||
detailed = [[ | ||
LazyLuaLinq provides a simple, lazy implementation of linq-like functions for Lua. | ||
With LazyLuaLinq, you can implement data transformation in elegant, | ||
expressive queries akin to SQL. | ||
]], | ||
homepage = "https://henkoglobin.github.io/lazylualinq", | ||
license = "Unlicense" | ||
} | ||
dependencies = { | ||
"lua >= 5.1, < 5.5" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["lazylualinq"] = "src/lazylualinq.lua", | ||
["lazylualinq.ordering"] = "src/lazylualinq/ordering.lua", | ||
} | ||
} |