diff --git a/README.md b/README.md index ee14986..9cba8b6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ pairing with smart people at Hashrocket. For a steady stream of TILs, [sign up for my newsletter](https://tinyletter.com/jbranchaud). -_1037 TILs and counting..._ +_1038 TILs and counting..._ --- @@ -844,6 +844,7 @@ _1037 TILs and counting..._ - [Jump Out Of A Nested Context With Throw/Catch](ruby/jump-out-of-a-nested-context-with-throw-catch.md) - [Last Raised Exception In The Call Stack](ruby/last-raised-exception-in-the-call-stack.md) - [Limit Split](ruby/limit-split.md) +- [List The Running Ruby Version](ruby/list-the-running-ruby-version.md) - [Listing Local Variables](ruby/listing-local-variables.md) - [Map With Index Over An Array](ruby/map-with-index-over-an-array.md) - [Mock Method Chain Calls With RSpec](ruby/mock-method-chain-calls-with-rspec.md) diff --git a/ruby/list-the-running-ruby-version.md b/ruby/list-the-running-ruby-version.md new file mode 100644 index 0000000..9b24995 --- /dev/null +++ b/ruby/list-the-running-ruby-version.md @@ -0,0 +1,16 @@ +# List The Running Ruby Version + +The running Ruby version can be listed with the `RUBY_VERSION` constant. + +For instance, if my Ruby version is 3.0.0, then I could get the version like +so: + +```ruby +> RUBY_VERSION +=> "3.0.0" +``` + +This is nice if you just want to check in an IRB session or if you need it as +part of a script. + +[source](https://blog.arkency.com/which-ruby-version-am-i-using-how-to-check/)