I know in PHP you have to intrepret a page like index.php, but in Ruby how does it work? I don't know what is the Ruby extension like index.php for PHP. Could you help me?
|
feedback
|
|
If you are talking about a command line program this will work.
or if you want an object oriented version
If you are looking for a ruby on rails version of Hello World. Check the Getting Started Guide for Rails. | |||||||||||||
feedback
|
|
I know the question was talking about Ruby, but I think you meant rails (which is what it was tagged as). Rails is a web framework that uses the ruby programming language. install rubyonrails. Type:
Navigate to http://localhost:3000 | |||||||
feedback
|
|
You can take a look at this Ruby Programming Wiki on Wikibooks There is also a getting started for Rails Code
Run
| |||
|
feedback
|
To run Ruby scripts on the web, you need to use a special server, run through (F)CGI, or do some other stuff; there are several ways to get different languages HTTP-accessible. However, the simplest way is probably to use a Ruby web framework, such as Ruby on Rails or Merb -- these projects include servers and all of the things you need to get going. | |||
|
feedback
|
|
Just copy and past this code on your terminal. Then hit enter.
| ||||
|
feedback
|
|
This is how to write a very simple "hello world" using Sinatra, which is a great way to bring up a Ruby-based website without using Rails. The sample is basically the same as the Sinatra folks have on the front page of their site. It's really this simple. Install the Sinatra gem along with its dependencies:
Save this to a file called
Drop to the command-line, and enter
By default Sinatra serves its pages at Open a new window in your browser, and go to:
and you should see Sinatra is really easy to work with, and makes a great prototyping and light-to-medium weight MVC-like server. I love it because of its easy integration with Sequel, my favorite ORM, and HAML, which replaces ERB as the templating engine. Sinatra's Intro doc is a great starting point. The Sinatra Book is a good resource too. | ||||
|
feedback
|