本地化世界网-- - 0 views
中国本地化网 - 0 views
QTP识别和操作对象的原理 - 0 views
yabest的测试天地(建设中…) - 0 views
偶然性不可重现BUG怎么处理? - 0 views
测试生涯 - 0 views
rubylearning.com :: View topic - Important: Read This First - 0 views
-
Objective: To get you up-to-speed in Core Ruby programming. Learning and asking questions as a group 'jump-starts' the Ruby learning process.
Ruby in Twenty Minutes - 0 views
-
@name. This is an instance variable, and is available to all the methods of the class
-
Ruby’s response => nil tells us that it knows we’re done defining the method
-
h to take a name as a parameter.
- ...1 more annotation...
rubylearning.com :: View topic - Lesson 1 - 0 views
-
We shall be referring to the documentation here - http://www.ruby-doc.org/core/
-
Constants begin with capital letters. Example PI, Length
Variables and Assignments: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
Keywords can't be used as variable names. def is a keyword
Fun with Strings: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
does not have anything in it at all; we call that an empty string.
-
n Ruby, strings are mutable. They can expand as needed, without using much time and memory. Ruby stores a string as a sequence of bytes.
-
The command output string is sent to the operating system as a command to be executed
- ...1 more annotation...
Numbers in Ruby: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
Ruby integers are objects of class Fixnum or Bignum. The Fixnum and Bignum classes represent integers of differing sizes. Both classes descend from Integer (and therefore Numeric). The floating-point numbers are objects of class Float, corresponding to the native architecture's double data type.
Ruby Features: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
Free format
-
Case sensitive
-
Comments - Anything following an unquoted #, to the end of the line on which it appears, is ignored by the interpreter. Also, to facilitate large comment blocks, the ruby interpreter also ignores anything between a line starting with =begin and another line starting with =end
- ...2 more annotations...
First Ruby Program: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
Press the F8 key to open an output window
-
Ctrl+Shift+I - this opens the Indentation Settings window
-
All Ruby source files have the .rb file extension
- ...13 more annotations...
LinuxDevCenter.com -- An Interview with the Creator of Ruby - 0 views
-
Ruby has been described as an absolutely pure object-oriented scripting language and a genuine attempt to combine the best of everything in the scripting world.
-
Yukihiro Matsumoto (or "Matz" as he's known online) is the creator of Ruby
Ruby Installation: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
Yukihiro Matsumoto, commonly known as 'Matz' created the Ruby language in 1993
Ruby Mentor, Guide: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views
-
It is my observation that if one learns a programming language along with a group and with set targets every day; one learns faster.