Skip to content

Commit b8d20c9

Browse files
committed
Fix rockspec
1 parent ecee1da commit b8d20c9

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ before_script:
77

88
script:
99
- luarocks pack xml2lua-*.rockspec
10+
#Install locally from packaged sources
11+
#- luarocks install xml2lua-*.rock
1012
#Required for "luarocks upload" command
1113
- luarocks install dkjson --local
12-
- luarocks upload xml2lua-*.rockspec --force --api-key=$LUA_ROCKS_API_KEY
14+
- luarocks upload xml2lua-*.rockspec --force --api-key=$LUA_ROCKS_API_KEY

xml2lua-1.1-0.rockspec renamed to xml2lua-1.1-1.rockspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package = "xml2lua"
2-
version = "1.1-0"
2+
version = "1.1-1"
33
source = {
44
url = "git://github.com/manoelcampos/xml2lua",
5-
tag = "v1.1-0"
5+
tag = "v1.1-1"
66
}
77
description = {
8-
summary = "An XML Parser written entirely in Lua 5.",
8+
summary = "An XML Parser written entirely in Lua that works for Lua 5.1 to 5.3",
99
detailed = [[
1010
Enables parsing an XML file and converting it to a Lua table,
1111
which can be handled directly by your application.
@@ -21,8 +21,9 @@ build = {
2121
type = "builtin",
2222
modules = {
2323
xml2lua = "xml2lua.lua",
24+
XmlParser = "XmlParser.lua",
2425
["xmlhandler.tree"] = "xmlhandler/tree.lua",
2526
["xmlhandler.print"] = "xmlhandler/print.lua",
26-
["xmlhandler.dom"] = "xmlhandler/dom.lua"
27+
["xmlhandler.dom"] = "xmlhandler/dom.lua",
2728
}
2829
}

0 commit comments

Comments
 (0)