Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 612 Bytes

ruby21.md

File metadata and controls

37 lines (30 loc) · 612 Bytes
title category layout tags intro
Ruby 2.1
Ruby
2017/sheet
Archived
Quick reference to the [new features in Ruby 2.1](https://www.ruby-lang.org/).

Named arguments with defaults

# length is required
def pad(num, length:, char: "0")
  num.to_s.rjust(length, char)
end
pad(42, length: 6) #=> "000042"
pad(42) #=> #<ArgumentError: missing keyword: length>

Module.prepend

prepend(
  Module.new do
    define_method ...
  end
)

References