Does anyone know if there is a .NET library/API similar to Ruby's Sinatra?
Just wondering since with the new Routing API in ASP.NET MVC, WCF and .NET 3.5, it seems like a possibility.
Does anyone know if there is a .NET library/API similar to Ruby's Sinatra?
Just wondering since with the new Routing API in ASP.NET MVC, WCF and .NET 3.5, it seems like a possibility.
It seems that the Martin framework is inspired by Sinatra, but it is not a port. It does use the new routing API that you mentioned though.
You may also want to check out OpenRasta. It is a nice, clean REST framework. I don't know if it uses the MS routing libraries or not, but from what I can tell it's routing syntax is very similar, if not identical. Also, it looks like IronRuby is capable of running Sinatra and Rack now, and the IronRuby website has instructions for getting it up and running, so an alternative may not be required if you want to run Sinatra in a .NET environment.