chore: add author name to all blog posts

This commit is contained in:
Wilfried OLLIVIER 2024-10-20 18:10:08 +02:00
parent afa7d97a88
commit 341f5c2d91
7 changed files with 6 additions and 2 deletions

View file

@ -7,8 +7,6 @@ author: Wilfried
tags: [dev, languages, ruby, demystifying-ruby]
---
# Demystifying Ruby 1/3 : Threading and Concurrency
[Ruby](https://www.ruby-lang.org) is a dynamic, **interpreted**, open-source programming language known for its simplicity, productivity, and its “human-readable” syntax. Ruby is often used in web development, particularly with the [Ruby on Rails](https://rubyonrails.org/) framework. It supports object-oriented, functional, and imperative programming paradigms.
The most known and used Ruby Virtual Machine is the **M**atz **R**uby **I**nterpreter (aka CRuby), developed by [Yukihiro Matsumoto](https://en.wikipedia.org/wiki/Yukihiro_Matsumoto) (aka Matz), the creator of Ruby. All other Ruby implementation such as [JRuby](https://www.jruby.org/), [TruffleRuby](https://github.com/oracle/truffleruby) and so on are out of the scope of this blog post.