diff --git a/.travis.yml b/.travis.yml index ec80943..1f461da 100755 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,8 @@ before_script: script: - luarocks pack xml2lua-*.rockspec + #Install locally from packaged sources + #- luarocks install xml2lua-*.rock #Required for "luarocks upload" command - luarocks install dkjson --local - - luarocks upload xml2lua-*.rockspec --force --api-key=$LUA_ROCKS_API_KEY \ No newline at end of file + - luarocks upload xml2lua-*.rockspec --force --api-key=$LUA_ROCKS_API_KEY diff --git a/xml2lua-1.1-0.rockspec b/xml2lua-1.1-1.rockspec similarity index 73% rename from xml2lua-1.1-0.rockspec rename to xml2lua-1.1-1.rockspec index 7d1dfa7..46798d1 100755 --- a/xml2lua-1.1-0.rockspec +++ b/xml2lua-1.1-1.rockspec @@ -1,11 +1,11 @@ package = "xml2lua" -version = "1.1-0" +version = "1.1-1" source = { url = "git://github.com/manoelcampos/xml2lua", - tag = "v1.1-0" + tag = "v1.1-1" } description = { - summary = "An XML Parser written entirely in Lua 5.", + summary = "An XML Parser written entirely in Lua that works for Lua 5.1 to 5.3", detailed = [[ Enables parsing an XML file and converting it to a Lua table, which can be handled directly by your application. @@ -21,8 +21,9 @@ build = { type = "builtin", modules = { xml2lua = "xml2lua.lua", + XmlParser = "XmlParser.lua", ["xmlhandler.tree"] = "xmlhandler/tree.lua", ["xmlhandler.print"] = "xmlhandler/print.lua", - ["xmlhandler.dom"] = "xmlhandler/dom.lua" + ["xmlhandler.dom"] = "xmlhandler/dom.lua", } } \ No newline at end of file