diff --git a/courses/ruby/ex06/README.md b/courses/ruby/ex06/README.md new file mode 100644 index 00000000..60b2c23c --- /dev/null +++ b/courses/ruby/ex06/README.md @@ -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/)