File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ before_script:
7
7
8
8
script :
9
9
- luarocks pack xml2lua-*.rockspec
10
+ # Install locally from packaged sources
11
+ # - luarocks install xml2lua-*.rock
10
12
# Required for "luarocks upload" command
11
13
- 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
Original file line number Diff line number Diff line change 1
1
package = " xml2lua"
2
- version = " 1.1-0 "
2
+ version = " 1.1-1 "
3
3
source = {
4
4
url = " git://github.com/manoelcampos/xml2lua" ,
5
- tag = " v1.1-0 "
5
+ tag = " v1.1-1 "
6
6
}
7
7
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 " ,
9
9
detailed = [[
10
10
Enables parsing an XML file and converting it to a Lua table,
11
11
which can be handled directly by your application.
@@ -21,8 +21,9 @@ build = {
21
21
type = " builtin" ,
22
22
modules = {
23
23
xml2lua = " xml2lua.lua" ,
24
+ XmlParser = " XmlParser.lua" ,
24
25
[" xmlhandler.tree" ] = " xmlhandler/tree.lua" ,
25
26
[" xmlhandler.print" ] = " xmlhandler/print.lua" ,
26
- [" xmlhandler.dom" ] = " xmlhandler/dom.lua"
27
+ [" xmlhandler.dom" ] = " xmlhandler/dom.lua" ,
27
28
}
28
29
}
You can’t perform that action at this time.
0 commit comments