prepare for release

This commit is contained in:
Thijs Schreijer
2014-01-05 08:57:16 +01:00
parent 2d696f797a
commit 4f722b7e2c
5 changed files with 3738 additions and 4262 deletions

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

@@ -0,0 +1,30 @@
package = "date"
version = "2.1.1-2"
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.3 "
}
source = {
url = "https://github.com/Tieske/date/archive/version_2.1.1.tar.gz",
dir = "date-version_2.1.1",
}
build = {
type = "builtin",
modules = {
date = "date.lua"
}
}