Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Ruby Metaprogramming - Complete Course, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:05:07
    Welcome
  2. Урок 2. 00:03:10
    Everything is an Object
  3. Урок 3. 00:07:27
    Open classes, DuckType, Runnable code
  4. Урок 4. 00:12:58
    Classes are objects
  5. Урок 5. 00:13:37
    Scopes
  6. Урок 6. 00:14:51
    Classes are modules with hierarchy
  7. Урок 7. 00:11:52
    Inheritance hierarchy
  8. Урок 8. 00:11:13
    Where variables and methods live?
  9. Урок 9. 00:09:47
    Method lookup
  10. Урок 10. 00:10:39
    Variables & Variable Scope
  11. Урок 11. 00:07:59
    Ruby Object Model
  12. Урок 12. 00:09:04
    Blocks, Closures, Binding
  13. Урок 13. 00:14:40
    Querying about classes / methods / variables
  14. Урок 14. 00:05:18
    Practice: Imitating Custom Language Keywords
  15. Урок 15. 00:19:45
    Defining classes / methods / variables
  16. Урок 16. 00:04:21
    Practice: Creating our own "attr_accessor" method
  17. Урок 17. 00:10:17
    Changing existing classes / methods / variables
  18. Урок 18. 00:05:56
    Practice: Implementing Rails’ “alias_method_chain"
  19. Урок 19. 00:07:31
    Evaluate code in different contexts
  20. Урок 20. 00:09:41
    Hook into changes in classes / methods / variables
  21. Урок 21. 00:15:03
    Practice: Write your own "ActiveSupport::Concern"
  22. Урок 22. 00:11:13
    Practice: Going through Rails' ActiveSupport::Concern code
  23. Урок 23. 00:05:12
    Solution: Write and improve the .tap() method
  24. Урок 24. 00:11:11
    Solution: Custom implementation of "Struct" class
  25. Урок 25. 00:17:01
    Solution: Write DSL for HTML code generator
  26. Урок 26. 00:05:13
    Example: Evaluating code in "isolated" scope
  27. Урок 27. 00:11:00
    Example: Sharing scopes among specific Classes or methods