rockspec version update

This commit is contained in:
Thijs Schreijer
2015-11-13 00:04:59 +01:00
parent f5a3c0d6f9
commit 35b63cd542

30
date-2.1.2-1.rockspec Normal file
View File

@@ -0,0 +1,30 @@
package = "date"
version = "2.1.2-1"
description = {
summary = "Date & Time module for Lua 5.x",
detailed = [[
Pure Lua Date & Time module for Lua 5.x featuring date and time string
parsing, time addition & subtraction, time span calculation, support for
ISO 8601 dates, local time support, strftime-like formatting.
]],
license = "MIT",
homepage = "https://github.com/Tieske/date",
}
dependencies = {
"lua >= 5.0, < 5.4 "
}
source = {
url = "https://github.com/Tieske/date/archive/version_2.1.2.tar.gz",
dir = "date-version_2.1.2",
}
build = {
type = "builtin",
modules = {
date = "date.lua"
}
}