Skip to content

Commit

Permalink
add rockspec for version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonstoler authored Sep 10, 2017
1 parent 938266e commit f74181d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions rockspecs/lua-toml-1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package = "lua-toml"
version = "1.0-1"
source = {
url = "git://github.com/jonstoler/lua-toml.git",
tag = "v1.0.1",
}
description = {
summary = "toml decoder/encoder for Lua",
detailed = [[
TOML 0.4.0 compliant Lua library with tests. Serializes TOML into a Lua table, and serlaizes Lua tables into TOML.]],
homepage = "https://github.com/jonstoler/lua-toml",
license = "The Happy License",
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
toml = "toml.lua",
},
copy_directories = {"spec"},
}

0 comments on commit f74181d

Please sign in to comment.