Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ruby 3 Redux
Search
Bozhidar Batsov
April 11, 2019
Programming
0
420
Ruby 3 Redux
Slide deck from my presentation at RubyDay 2019 in Verona, Italy.
Bozhidar Batsov
April 11, 2019
Tweet
Share
More Decks by Bozhidar Batsov
See All by Bozhidar Batsov
Weird Ruby (RubyDay 2024, Verona)
bbatsov
0
100
Sustainable OSS (Balkan Ruby 2024, Sofia)
bbatsov
0
110
Ruby's Creed (RubyDay 2023, Verona)
bbatsov
0
8
Victims of Complexity
bbatsov
0
300
Ruby 3.0 Redux (Spark Academy, Jan 2021)
bbatsov
1
240
Ruby 3.0 Redux (Pivorak 4.0)
bbatsov
0
430
The Elements of Programming Style (HackConf 2019)
bbatsov
0
160
The Groundhog Day Development Method (HackConf 2019)
bbatsov
0
250
CIDER Distilled: A Common Foundation for Clojure Tooling
bbatsov
0
250
Other Decks in Programming
See All in Programming
テストコード文化を0から作り、変化し続けた組織
kazatohiei
2
1.5k
rails statsで大解剖 🔍 “B/43流” のRailsの育て方を歴史とともに振り返ります
shoheimitani
2
950
テストケースの名前はどうつけるべきか?
orgachem
PRO
0
150
競技プログラミングへのお誘い@阪大BOOSTセミナー
kotamanegi
0
360
17年周年のWebアプリケーションにTanStack Queryを導入する / Implementing TanStack Query in a 17th Anniversary Web Application
saitolume
0
250
Haze - Real time background blurring
chrisbanes
1
520
CQRS+ES の力を使って効果を感じる / Feel the effects of using the power of CQRS+ES
seike460
PRO
0
150
testcontainers のススメ
sgash708
1
120
情報漏洩させないための設計
kubotak
3
480
KubeCon + CloudNativeCon NA 2024 Overviewat Kubernetes Meetup Tokyo #68 / amsy810_k8sjp68
masayaaoyama
0
260
ChatGPT とつくる PHP で OS 実装
memory1994
PRO
2
120
Асинхронность неизбежна: как мы проектировали сервис уведомлений
lamodatech
0
880
Featured
See All Featured
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.9k
A Philosophy of Restraint
colly
203
16k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
3
170
Writing Fast Ruby
sferik
628
61k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
450
Building Applications with DynamoDB
mza
91
6.1k
Put a Button on it: Removing Barriers to Going Fast.
kastner
59
3.6k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
6
520
BBQ
matthewcrist
85
9.4k
Testing 201, or: Great Expectations
jmmastey
40
7.1k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
17
2.3k
Transcript
None
Ciao!
Божидар
Bozhidar
Bozhidar
Bug cool
@bbatsov
Sofia, Bulgaria Sofia, Bulgaria
None
None
bbatsov
metaredux.com
Ruby & Rails style guides
None
None
None
None
None
None
Not on Ruby’s Core Team
None
None
None
None
Matz on Ruby
Language Maturity
The Ruby Community
Ruby is not dying
None
None
We have to feed the community intellectually. — Matz
We have to keep moving forward. — Matz
Backwards Compatibility
We’re not going to repeat the Python 3 mistakes! —
Matz
Victim of the Hype Cycle
None
Rails Mania (2008)
Ruby Today
Ruby Today
2025
Matz’s Retirement
None
Ruby 4
Ruby 4x4
Ruby 4 is going to be 4 times faster than
Ruby 3
Ruby 4 is going to be 12 times faster than
Ruby 2
Ruby 4 is finally going to be fast enough!
None
What about Ruby 3?
–Matz “We’ll aim to release Ruby 3 for the Olympic
Games in Tokyo in 2020.”
Ruby 3 Goals •Improved programming safety •Faster performance •Better concurrency/parallelism
support •Better tools
Optional static typing?
Duck inference?
Actors?
Stream based model?
Ownership based model?
Guilds?
3 times faster performance?
Smaller Goals •Sane keyword arguments (?!!?!) •Pattern Matching •Deprecation of
quirky features •Frozen string literals
None
Ruby 3.0 Redux
Dictionary Definitions
Ruby
noun 1. a precious stone consisting of corundum in colour
varieties varying from deep crimson or purple to pale rose. 2. a programming language optimised for programmer happiness
3
number 1. equivalent to the sum of one and two;
one more than two; 3 2. A mystical version rarely achieved by most software projects.
Redux
adjective 1. brought back, revived Emacs era redux 2. (usually
postpositive) (esp of an artistic work) presented in a new way Apocalypse Now Redux
None
Ruby 3.0 is not a single magic release
Ruby 3.0 is an idea
None
Ruby follows SemVer
Ruby 3 is going to be 3 times faster than
Ruby 2.0
Generational GC (Ruby 2.1)
Incremental GC (Ruby 2.2)
MJIT (Ruby 2.6)
Deprecation of flip-flops (Ruby 2.6)
Ruby 2.7
Numbered block parameters
numbers.map { Math.log2(@1) }
foo.bar { @1 + @2 }
h = Hash.new { @1[@2] = "Go Fish: #{@2}" }
h = Hash.new { @1[@2] = "Go Fish: #{@2}" }
None
https://bugs.ruby-lang.org/issues/15723
Method reference operator
[2, 4, 8, 16, 32].map { |n| Math.log2(n) }
[2, 4, 8, 16, 32].map(&method(Math.log2))
[2, 4, 8, 16, 32].map(&Math.:log2)
[2, 4, 8, 16, 32].map { Math.log2($1) }
Beginless range
Beginless range
Beginningless range
arr[..3]
items.where(price: ..20)
None
Ruby 3.0 (Current Status)
Better Tools
RubyGems 3
The bundling of Bundler (Ruby 2.6)
Gemifying the Standard Library (ongoing progress)
Default vs Bundled Gems
Default Gems • Bundler • RubyGems • date • irb
• json • …
Bundled Gems • minitest • did_you_mean • rake • …
stdgems.org
Ruby 3x3
Only applies to certain benchmarks
Ruby 2.6 is 65% faster than Ruby 2.0
None
10% average speedup per release
None
MJIT is the biggest hope for Ruby 3x3
Guilds
None
None
Developed outside the Ruby’s main repo
https://github.com/ko1/ruby/tree/guild
Work in progress ™
Parallel Programming in Ruby 3 with Guilds (http://www.atdot.net/~ko1/activities/2018_rubyconf2018.pdf)
Sane Keyword Arguments
https://bugs.ruby-lang.org/issues/14183
# The following calls pass keyword arguments foo(..., key: val)
foo(..., **hsh) foo(..., key: val, **hsh)
# The following calls pass **normal** arguments foo(..., {key: val})
foo(..., hsh) foo(..., {key: val, **hsh})
Breaking change!!!
Migration warning in Ruby 2.7
Pattern Matching (https://bugs.ruby-lang.org/issues/14912)
What’s not in Ruby 3.0?
Optional Static Typing
Actors
Stream processing
Frozen string literals
Deprecation of autoload
Community Impact
Community Contributed Features • UTF-8 • Enumerator • Generational GC
• Keyword Arguments • JIT • Concurrency
Community Contributions • Rake • Bundler • Documentation & Tutorials
• A ton of amazing libraries • Rails • …
None
Real Namespaces (https://bugs.ruby-lang.org/issues/14982)
RubyKaigi Updates
None
Felina
Grazie! twitter: @bbatsov github: @bbatsov https://metaredux.com https://emacsredux.com RubyDay 2019 Verona,
Italy 11.04.2019