Using "Verse" library in Corona (XMPP client)

hiAll() 

I’m not new user to Corona, but I can’t say “I’m ultra-pro in Lua” as its pure.
And I hit a wall with next situation I wanna describe and would appreciate any type of help.

So, I wanna use Verse library and make XMPP client builded with Corona. I didnt get any info that its impossible.
Some links:

http://matthewwild.co.uk/projects/verse/home - description of library. Matthew is author and he makes serious open-source projects like Prosody - Lua based XMPP server.

http://code.matthewwild.co.uk/verse - mercurial repository of that lib

http://matthewwild.co.uk/projects/verse/verse_doc.xml - easy-looking documentation with HUGE missed part if you are newbie. Also its for very old version.

As far as I understand its pure Lua library using some standard libs. Here http://matthewwild.co.uk/projects/verse/home author said, that it demands  LuaExpat and LuaSocket. I know Corona has LuaSocket included and I dont know much about LuaExpat but I dont think its hard to download and make “require” it.

But here http://stackoverflow.com/questions/11508486/corona-sdk-xmpp   we can find, that it needs " LuaSocket, LuaExpat, LuaSec and LuaFileSystem", and LFS is included in Corona too, but it must be required to be available. LuaSec - same as LuaExpat for now for me.

Ok, I downloaded all files from default branch - http://code.matthewwild.co.uk/verse/archive/154c2f04d73b.zip

Trying to run something from examples and found out my first newbie-issue - there is no “verse.lua” file which is required in some other lua files. Diggin files showed me, that “init.lua” seems creating that verse module. But it has 3 lines (10-12) which require some strange modules or something like that, which are not present in downloaded archive at all.

local server = require “net.server”;

local events = require “util.events”;

local logger = require “util.logger”;

Last update of library - 16th of November, 2014.
Author promissed to release good docs in 2009. So, if anyone will share link leading to the guide or where should I dig and search - I’ll be very happy. 

Thank you for your attention.

UPDATE:

I found interesting in “squishy” file without any extension. It contains some ?configs?. Can anyone say what it is for?

Archive of library here http://code.matthewwild.co.uk/verse/archive/154c2f04d73b.zip

UPDATE:
I could find lib’s author and he helped me a lot. Here the chat:

(20:52:33)  me :  there many dependecies i cant find in folders from repo

(20:52:45)  Author There is a utility I wrote called Squish: https://matthewwild.co.uk/projects/squish

(20:53:03)  Author The missing modules are in the Prosody repo at https://hg.prosody.im/

(20:53:13)  me :  Thanks!

(20:53:16)  me :  That what i need!

(20:53:19)  Author You can use squish to automatically fetch them

(20:53:28)  Author and it builds them all into a single portable ‘verse.lua’

(20:53:34)  Author which will make your life a lot easier =)

I think problem solved. Now I gonna continue. Dont close topic, maybe there will be some other questions.

Hi, have you made any progress on this? Do you have any trouble in using verse?

How to contact the author? 

Thank you.

UPDATE:

I found interesting in “squishy” file without any extension. It contains some ?configs?. Can anyone say what it is for?

Archive of library here http://code.matthewwild.co.uk/verse/archive/154c2f04d73b.zip

UPDATE:
I could find lib’s author and he helped me a lot. Here the chat:

(20:52:33)  me :  there many dependecies i cant find in folders from repo

(20:52:45)  Author There is a utility I wrote called Squish: https://matthewwild.co.uk/projects/squish

(20:53:03)  Author The missing modules are in the Prosody repo at https://hg.prosody.im/

(20:53:13)  me :  Thanks!

(20:53:16)  me :  That what i need!

(20:53:19)  Author You can use squish to automatically fetch them

(20:53:28)  Author and it builds them all into a single portable ‘verse.lua’

(20:53:34)  Author which will make your life a lot easier =)

I think problem solved. Now I gonna continue. Dont close topic, maybe there will be some other questions.

Hi, have you made any progress on this? Do you have any trouble in using verse?

How to contact the author? 

Thank you.