Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions courses/ruby/ex06/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# my_delegate

In this exercise you need to impelement your own 'delegate' method, which has to delegate methods from one class to instance variables and methods of other class.

Pay extra attention to the file delegate_example.rb, where you can see code and comments, which will help you to clearly understand how to do this task correctly.


## Resourses
- [Ruby Keyword Arguments](https://thoughtbot.com/upcase/videos/ruby-keyword-arguments)
- [How To Delegate Methods in Ruby](https://www.rubyguides.com/2018/10/delegate-methods-in-ruby/)