DEV Community

Cover image for Boost Your Ruby Methods with Yield: A Flexible Approach to Dynamic Coding
Peter Kim Frank for CodeNewbie

Posted on with Erin A Olinick

Boost Your Ruby Methods with Yield: A Flexible Approach to Dynamic Coding

Hey Ruby developers! Did you know that you can use the "yield" keyword in your methods to make them more flexible? By calling "yield" in your method, you can execute a block of code passed in by the caller. This can be especially useful for creating dynamic methods that can adapt to different situations.

Here's an example:

def my_method
  puts "Before yield"
  yield
  puts "After yield"
end

my_method { puts "Inside yield" }
Enter fullscreen mode Exit fullscreen mode

And the output:

Before yield
Inside yield
After yield

Enter fullscreen mode Exit fullscreen mode

Give it a try and let us know what you think! Share your examples in the comments.

Got another Ruby tip? Share it here?


Be sure to join us here on CodeNewbie Org next Ruby Tuesday for more challenges and tips to enhance your Ruby skills!.

#codenewbie

The most supportive community of programmers and people learning to code.

Top comments (8)

Collapse
 
lubiah profile image
Lucretius Biah

At least you should add examples, I don't understand the problem you are trying to solve

Collapse
 
erinao profile image
Erin A Olinick

Updated with example! 😄

Collapse
 
lubiah profile image
Lucretius Biah

What about syntax highlighting😂

Thread Thread
 
erinao profile image
Erin A Olinick

Maybe that's part of the challenge! lol Where should the highlighting be?

Thread Thread
 
lubiah profile image
Lucretius Biah • Edited

Should be before the code blocks,
Like this

```langauge
 Code here
```
Enter fullscreen mode Exit fullscreen mode
Thread Thread
 
erinao profile image
Erin A Olinick

Image description

Collapse
 
cece132 profile image
Candace Eckels

Nice!

Collapse
 
valerauko profile image
Vale

Just be sure to make it yield if block_given? unless you want some nice LocalJumpError