Skip to content

Commit

Permalink
Fix rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
manoelcampos committed May 12, 2018
1 parent ecee1da commit b8d20c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- luarocks upload xml2lua-*.rockspec --force --api-key=$LUA_ROCKS_API_KEY
9 changes: 5 additions & 4 deletions xml2lua-1.1-0.rockspec → xml2lua-1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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",
}
}

0 comments on commit b8d20c9

Please sign in to comment.