0

我正在寻找我的第一个基于 ruby​​ 的网站。

我假设正在查看print "hello"应该有效的教程,但事实并非如此。

任何指针?我假设这是一个愚蠢的菜鸟问题。

我的文件位于 mysite.com/test.rb

谢谢!

(这更像是一个虚拟的入门问题而不是编码,所以它在这里而不是堆栈)。

4

3 回答 3

4

看看辛纳屈。您可以在 5 行代码中创建一个 hello world 站点,然后从那里开始查看教程。

于 2012-10-08T23:52:05.760 回答
0

Check out Ruby on Rails resource http://ruby.railstutorial.org/ruby-on-rails-tutorial-book. It is very easy to start learning.

于 2012-10-09T01:51:49.187 回答
0

If your file only contains the following

print "hello"

then it most certainly wont just work by browsing to site.com/foo.rb

You need things setup like a webserver to handle the request and route it to a ruby interpreter, etc...

于 2012-10-09T01:54:57.110 回答