#Class describ ------rdoc rules#= headers#this is header content#== sub header# this is sub header content#=== sub sub header# this is sub sub headerclass Animal attr_accessor :name #------------- ...……
Ruby Plus is a site offering free Ruby and Rails related screencasts recorded by Bala Paranj, much in the same vein as Ryan Bates' Railscasts. The screencasts are generally similar in length and ove ...……
http://ruby-metaprogramming.rubylearning.com/html/ruby_metaprogramming_2.html
http://galeki.is-programmer.com/posts/183.html
1.3.2 send
send( ) is an instance method of the Object class. The ...……
本文将介绍Windows下Ruby On Rails安装(Ruby1.9.2,Rails3,Sqlite3)
(1)到ruby官网:http://www.ruby-lang.org/en/下载window安装包,并安装,
安装时候选择Add Ruby executeables to your Path和Associate .rb a ...……
require 'test/unit'
class StringTest amp;amp;lt; Test::Unit::TestCase
def test_length
s = amp;quot;Hello, World!amp;quot;
assert_equal(13, s.length)
end
end
这就是一个简单的测试, ...……