Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lua on Rails?

Is there a library like Rails for Lua?

like image 312
Andrew Hampton Avatar asked Jan 31 '09 02:01

Andrew Hampton


3 Answers

Entirely like Rails, I'd say no. But take a look at the Kepler Project and specially Orbit, which is a MVC framework. I'm doing web stuff with it and it is really fun to work with. You don't have the scaffolding stuff you have in Rails, but besides that, it has an orm, a templating engine (Cosmo), so you can get going.

like image 126
Ignacio Avatar answered Oct 17 '22 23:10

Ignacio


Tir is a simple Lua + Mongrel2 web framework written by Zed Shaw.

like image 41
Alex Dean Avatar answered Oct 18 '22 00:10

Alex Dean


For building web applications in Lua (or MoonScript) lapis might be a fitting solution. It seems to be stable enough as known sites like http://itch.io or http://luarocks.org are built with it.

http://leafo.net/lapis/

Lapis includes URL routing, HTML Templating, CSRF Protection and Session support, PostgreSQL/MySQL backed models, schema generation and migrations in addition to a collection of useful functions needed when developing a website.

like image 2
aggsol Avatar answered Oct 17 '22 23:10

aggsol