Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any Xampp Like For Ruby On Rails?

I'm still new to ruby and i'm in the process to learn it, i'm actually using Xampp for php on windows, but i'm stuck at finding a complete package to install a RoR server just like Xampp without any manual work.

Is there any tool out there?

like image 352
CodeOverload Avatar asked Mar 17 '11 06:03

CodeOverload


People also ask

What is comparable to Ruby on Rails?

Django is to Python what Ruby on Rails is to Ruby. If you are looking for an alternative of Ruby, maybe something that works cross-platform, and enables full-stack web development, Python is a good option. If you decide on Python, Django is your go-to framework as it won't require frontend frameworks.

Is PHP better than Ruby on Rails?

PHP vs Ruby speed: The majority projects that are built with PHP are simple and doesn't consume a lot of memory. It is easier to scale a PHP website since small projects don't require over-the-top features and don't take up a lot of memory. Ruby, on the other hand, takes more memory and has some speed limitations.

Is Laravel like Ruby on Rails?

Key Difference between Laravel and Ruby on Rails Laravel is suited for enterprise-level projects with complex business logic to small websites, whereas Rails is excellent for metaprogramming language and web application written for small projects.

Which is better Ruby on Rails or Laravel?

Differences between Laravel and Ruby on Rails: Laravel is best suited for enterprise-level projects with complicated business logic to small websites, whereas Rails is best suited for metaprogramming language and small project web applications.


2 Answers

You can try Rails Installer

like image 67
emrahbasman Avatar answered Oct 18 '22 08:10

emrahbasman


One of your choices is to use built in mongrel/webrick server which comes with each rails app. Just type $ rails s at the console and you're good to go. Otherwise I don't think it's particularly useful to deploy an app each time you change something.

like image 28
Eimantas Avatar answered Oct 18 '22 06:10

Eimantas