idophir
idophir

Reputation: 212

Figuring out what Ruby on Rails is

Is RoR to Ruby equivalent to what the .NET framework is to VB.NET?

Upvotes: 1

Views: 324

Answers (4)

arshad
arshad

Reputation: 441

RoR is for developing dynamic web applications - which otherwise would have required php .But with RoR its very easy to write code for big web applications including ajaxifying it .i say its very easy and fast bcoz RoR is object-oriented.

Upvotes: -2

OscarRyz
OscarRyz

Reputation: 199215

Nope!

You can go through this question to see What is Ruby on Rails and why is it so famous?

This answer contains a link to the famous "Create a blog in 15 minutes with Ruby on Rails" It is VERY interesting to watch. Shows a lot of what RoR is all about and the way it is used to build apps.

Upvotes: 1

Rob Elsner
Rob Elsner

Reputation: 821

No.

RoR is a rapid web application development framework.

.NET is a common language runtime, and VB.NET compiles to the CLR for VB code.

RoR would be equivalent to the ASP.NET MVC framework (with a bunch of time and magic and an amazingly flexible language).

Upvotes: 6

Sophie Alpert
Sophie Alpert

Reputation: 143124

RoR is a framework (set of libraries) for making web sites.

Upvotes: 1

Related Questions