local p = {}
local releases = {}
-- HEY YOU, UPDATE THESE
releases["1.27.0"] = "2016-06-28"
releases["1.26.3"] = "2016-05-20"
releases["1.23.14"] = "2016-05-20"
-- Is there a beta branch that isn't a proper release yet?
p.isthereabeta = false
-- OKAY YOU CAN STOP NOW
-- Iterate in reverse
-- from http://lua-users.org/wiki/IteratorsTutorial
function ripairs(t)
local function ripairs_it(t,i)
i=i-1
local v=t[i]
if v==nil then return v end
return i,v
end
return ripairs_it, t, #t+1