File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ before_script:
77
88script :
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
Original file line number Diff line number Diff line change 11package = " xml2lua"
2- version = " 1.1-0 "
2+ version = " 1.1-1 "
33source = {
44 url = " git://github.com/manoelcampos/xml2lua" ,
5- tag = " v1.1-0 "
5+ tag = " v1.1-1 "
66}
77description = {
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}
You can’t perform that action at this time.
0 commit comments