Ruby-CheatSheet
Ruby CheatSheet
数据结构
变量
类型判断
>> s = "something"
=> "something"
>> s.kind_of?(Array)
=> false
>> s = ["something", "else"]
=> ["something", "else"]
>> s.kind_of?(Array)
=> true
类与对象
成员变量(Variable)
Class Variable
Instance Variable
常用操作(Common APIs)
IO
File
Read
def read_from_file(file_name)
# read file and get content as list
file_list = []
file = File.open(file_name)
file.each {
|line|
if (line != "\n")
file_list << line.chomp
end
}
return file_list
end
Introduce 程序块代码文件编码
encoding: UTF-8
QuickStart Installer Ubuntu
- 首先在使用
apt-get 之前,必须先update 一下,否则有些库是安装不上的。 [plain] view plaincopyprint? - $ sudo apt-get update $ sudo apt-get update [plain] view plaincopyprint?
- $ sudo apt-get install -y build-essential openssl curl libcurl3-dev libreadline6 libreadline6-dev git zlib1g zlib1g-dev libssl-dev libyaml-dev libxml2-dev libxslt-dev autoconf automake libtool imagemagick libmagickwand-dev libpcre3-dev libsqlite3-dev libmysql-ruby libmysqlclient-dev
$ sudo apt-get install -y build-essential openssl curl libcurl3-dev libreadline6 libreadline6-dev git zlib1g zlib1g-dev libssl-dev libyaml-dev libxml2-dev libxslt-dev autoconf automake libtool imagemagick libmagickwand-dev libpcre3-dev libsqlite3-dev libmysql-ruby libmysqlclient-dev
2. 安装RVM [html] view plaincopyprint? - $ curl -L https://get.rvm.io | bash -s stable
$ curl -L https://get.rvm.io | bash -s stable
下面这步是不行的,要
logout 再次登录 [plain] view plaincopyprint? - $ source ~/.rvm/scripts/rvm
$ source ~/.rvm/scripts/rvm
然后就安装好
rvm 了 [plain] view plaincopyprint? - $ rvm -v
- rvm install 2.2.1
- $ gem source -r https://rubygems.org/
- $ gem source -a http://ruby.taobao.org
数据结构变量
命名
创建增删
指定字符删除 str.delete([other_str]+) => new_str “hello”.delete “l”,“lo” #=> “heo” “hello”.delete “lo” #=> “he” “hello”.delete “aeiou”, “^e” #=> “hell” “hello”.delete “ej-m” #=> “ho” 指定下标删除 str(1..2) = "" 空白字符删除 str.lstrip => new_str " hello “.lstrip #=> “hello “、 “hello”.lstrip #=> “hello” “hello”.chomp #=> “hello” “hello\n”.chomp #=> “hello” “hello\r\n”.chomp #=> “hello” “hello\n\r”.chomp #=> “hello\n” “hello\r”.chomp #=> “hello” “hello”.chomp(“llo”) #=> “he” “string\r\n”.chop #=> “string” “string\n\r”.chop #=> “string\n” “string\n”.chop #=> “string” “string”.chop #=> “strin”
索引遍历
统计操作其他操作字符串反转
str.reverse => new_str"stressed”.reverse
#=> “desserts”
Array 长度 array.size names = [1,2,3,4,5] p names.size 空判断
创建增删
删除
组范围则返回
a.delete_at(99) => nil
栈列操作
索引遍历
- arr = [1,1,2,3] b = arr & arr b => [1,2,3]
- arr = [1,1,2,3] b = arr.uniq b => [1,2,3]
Hash
空判断 h.empty?
创建增删
索引遍历
h.has_key?(key)
h.include?(key)
h.member?(key)
include Enumerable
end
each
select
[1,2,3,4,5].select { |i| i > 3 } => [4,5] reject 函数
序列操作
map/reduce
(1..5).reduce { |sum,num| sum = sum * num }
Modules
Class&Object
方法类别
MiniTest
UnitTest
- 待测试类
class Meme
def i_can_has_cheezburger?
"OHAI!"
end
def will_it_blend?
"YES!"
end
end
- 测试类
require "minitest/autorun"
class TestMeme < Minitest::Test
def setup
@meme = Meme.new
end
def test_that_kitty_can_eat
assert_equal "OHAI!", @meme.i_can_has_cheezburger?
end
def test_that_it_will_not_blend
refute_match /^no/i, @meme.will_it_blend?
end
def test_that_will_be_skipped
skip "test this later"
end
end
- 运行测试直接运行
ruby people_test.rb
即可得到结果
Run options: --seed 10922
# Running:
.
Finished in 0.001302s, 768.0492 runs/s, 768.0492 assertions/s.
1 runs, 1 assertions, 0 failures, 0 errors, 0 skips
Specs
require "minitest/autorun"
describe Meme do
before do
@meme = Meme.new
end
describe "when asked about cheeseburgers" do
it "must respond positively" do
@meme.i_can_has_cheezburger?.must_equal "OHAI!"
end
end
describe "when asked about blending possibilities" do
it "won't say no" do
@meme.will_it_blend?.wont_match /^no/i
end
end
end
Benchmarks
- 添加到
UnitTest 中
# optionally run benchmarks, good for CI-only work!
require "minitest/benchmark" if ENV["BENCH"]
class TestMeme < Minitest::Benchmark
# Override self.bench_range or default range is [1, 10, 100, 1_000, 10_000]
def bench_my_algorithm
assert_performance_linear 0.9999 do |n| # n is a range value
@obj.my_algorithm(n)
end
end
end
- 添加到
Specs 中
describe "Meme Benchmark" do
if ENV["BENCH"] then
bench_performance_linear "my_algorithm", 0.9999 do |n|
100.times do
@obj.my_algorithm(n)
end
end
end
end
RSpec
Quick Start
In the project directory of the Ruby project that we have just created, create a Gemfile with the following content:
source 'https://rubygems.org'
gem 'rspec', :require => false, :group => :test
Next, create a folder named spec and a new file named spec_helper.rb
. Add the following into spec_helper.rb
:
require_relative '../string_ops'
Ideally, we will have one spec file per Ruby class, all of the spec files will reside in this spec folder, and each of them will have require ‘spec_helper’ in their first line.In our case, we want to write some tests for the StringOps Ruby class, we do this by first creating the file string_ops_spec.rb in the spec folder and add the following into the file:
require 'spec_helper'
describe StringOps do
string_ops = StringOps.new
input_string = "To see a World in a Grain of Sand, And a Heaven in a Wild Flower, Hold Infinity in the palm of your hand, And Eternity in an hour."
describe "#to_upper" do
it "returns upper case for input_string" do
expected_string = "TO SEE A WORLD IN A GRAIN OF SAND, AND A HEAVEN IN A WILD FLOWER, HOLD INFINITY IN THE PALM OF YOUR HAND, AND ETERNITY IN AN HOUR."
expect(string_ops.to_upper(input_string)).to eq(expected_string)
end
end
describe "#to_lower" do
it "returns lower case for input_string" do
expected_string = "to see a world in a grain of sand, and a heaven in a wild flower, hold infinity in the palm of your hand, and eternity in an hour."
expect(string_ops.to_lower(input_string)).to eq(expected_string)
end
end
end
expect(string_ops.to_upper(input_string)).to eq(expected_string)
这是rspec 内置的匹配器。这里是关于匹配器的列表
在配置完rspec spec
命令来进行
$ rspec spec
..
Finished in 0.00109 seconds (files took 0.09191 seconds to load)
2 examples, 0 failures
上述命令会显示出总的测试数目与失败的测试的数目。也可以用–
$ rspec spec --format documentation
StringOps
#toUpper
returns upper case of input string
#toLower
returns lower case of input string
Finished in 0.00111 seconds (files took 0.08931 seconds to load)
2 examples, 0 failures
Synatx
定义器
再
- describe
我们用
describe() 方法定义一个测试用例组,describe() 方法的参数可以是我们要测试的对象( 如例中的People) ,可以是一个字符串,用来描述该组,describe 方法后的字符串所描述的内容可以对应一个用户故事。注意describe() 方法是可以嵌套的,两个describe() 方法衔接起来可以更细化一个用户故事,如上边的里面的describe() 方法内就表示: ”People have enough money pay for house”。 - context
context 与describe 都可以用于描述一个用户的故事,但是describe 往往用于描述只执行一次的情况,而context 用于描述可能存在多种情况的故事。
describe "launch the rocket" do
before(:each) do
#prepare a rocket for all of the tests
@rocket = Rocket.new
end
context "all ready" do
before(:each) do
#under the state of ready
@rocket.ready = true
end
it "launch the rocket" do
@rocket.launch().should be_true
end
end
context "not ready" do
before(:each) do
#under the state of NOT ready
@rocket.ready = false
end
it "does not launch the rocket" do
@rocket.launch().should be_false
end
end
end
- it
我们用
it() 方法定义一个具体的测试用例( 在RSpec 中,称一个测试用例为一个example) 。其后的字符串为该方法的参数,用来描述一个具体的场景,it 方法体就是我们对系统在该场景下的行为的定义。It() 方法和describe() 方法衔接起来,可以完整的描述一个系统行为,以上边的最后的一个测试用例为: ”People have enough money pay for house should travel ”。
修饰器
这两个方法很多测试框架都支持,需要说明的是这两个方法的参数,例子中为符号’:each’,表明对于每一个测试用例,先执行
Mocks
context "mock response" do
it "mocks the response from to_upper" do
mocked_response = "This is a mocked to_upper response."
mocked_string_ops = double("mocked_string_ops")
allow(mocked_string_ops).to receive(:to_upper).and_return(mocked_response)
expect(mocked_string_ops.to_upper("any string")).to eq(mocked_response)
end
end
他会模拟调用,结果如下:
$ rspec spec --format documentation
StringOps
#toUpper
returns upper case of input string
#toLower
returns lower case of input string
mock response
mocks the response from toUpper
Finished in 0.00559 seconds (files took 0.09207 seconds to load)
3 examples, 0 failures
SimpleCov
Right, we have rspec as the testing tool in Ruby, so far so good, next, let’s look briefly into the code coverage analysis tool SimpleCov in Ruby.
To get started, include SimpleCov into the Gemfile.
source 'https://rubygems.org'
gem 'rspec', :require => false, :group => :test
gem 'simplecov', :require => false, :group => :test
Then, load and launch SimpleCov at the beginning of the spec/spec_helper.rb file:
require 'simplecov'
SimpleCov.start
require_relative '../string_ops'
Make sure that it’s added to the very beginning of the file before any of your application code is required, otherwise SimpleCov won’t be able to track the files and their coverage.
Next, run rspec like we normally would and that’s it, we have a coverage report generated,
$ rspec spec
...
Finished in 0.00556 seconds (files took 0.11402 seconds to load)
3 examples, 0 failures
Coverage report generated for RSpec to /a/b/c/project_dir/coverage. 6 / 7 LOC (85.71%) covered.
Notice the last line of the output says that the coverage report is generated, we can now open coverage/index.html in a browser to view it.

