ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Ruby Metaprogramming
Name: Thaichor Seng
Position: Junior Developer at Yoolk.Inc

I?m currently working on creating
Restaurant Menu application
using Ruby on Rails.
?   Sugar Syntax
?   Dynamic Language
?   English Like
?   Lots of built-in methods
?   Metaprogramming
Metaprogramming is writing code that writes code.

Here are some method using for metaprogramming:
? define_method()
? method_missing()
? class_eval()
? eval()
class MyClass
   define_method :my_method do |my_arg|
     my_arg * 3
   end
   # def my_method(my_arg)
   # my_arg * 3
   # end
end

obj = MyClass.new
obj.my_method(2) # => 6
class Currency
   def initialize(value)
      @value = value
   end
   [:usd, :riel, :yen, :bat].each do |method|
      define_method ¡°to_#{method}¡± do
        ¡°#{@value.to_s} #{method.to_s}¡±
      end
   end
end
c = Currency.new(14)
c.to_usd           # 14 usd
c.to_riel          # 14 riel
class Lawyer
end

nick = Lawyer.new
nick.talk_simple
NoMethodError: undefined method ?talk_simple' for
#<Lawyer:0x3c848>
class Lawyer
   def method_missing(method, *args)
     puts "You called: #{method}(#{args.join(', ')})"
   end
end
nick = Lawyer.new
nick.talk_simple     # You called talk_simple()
Nick.talk(a, b)      # You called talk(a, b)
class MyOpenStruct
   def initialize
    @attributes = {}
   end
   def method_missing(name, *args)
     attribute = name.to_s
     if attribute =~ /=$/
        @attributes[attribute.chop] = args[0]
     else
        @attributes[attribute]
     end
   end
end
icecream = MyOpenStruct.new
icecream.flavor = "vanilla¡°       # nil
icecream.flavor                   # vanilla
def add_method_to(a_class)
  a_class.class_eval do
     def m
       'Hello!'
     end
  end
end

add_method_to String
"abc".m       # => "Hello!¡°
map = { "update" => "deploy:update" ,
         "restart" => "deploy:restart" ,
         "cleanup" => "deploy:cleanup" }
map.each do |old, new|
eval "task(#{old.inspect}) do
warn "[DEPRECATED] `#{old}' is deprecated. Use `#{new}' instead."
find_and_execute_task(#{new.inspect})
end"
end
The End

More Related Content

What's hot (18)

Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)
brian d foy
?
³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù
³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù
³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù
Takuma Watabiki
?
Rails is not just Ruby
Rails is not just RubyRails is not just Ruby
Rails is not just Ruby
Marco Otte-Witte
?
RSpec
RSpecRSpec
RSpec
Marco Otte-Witte
?
Excellent
ExcellentExcellent
Excellent
Marco Otte-Witte
?
Value objects
Value objectsValue objects
Value objects
Barry O Sullivan
?
Learning Perl 6
Learning Perl 6 Learning Perl 6
Learning Perl 6
brian d foy
?
Real life-coffeescript
Real life-coffeescriptReal life-coffeescript
Real life-coffeescript
David Furber
?
An introduction to Ruby
An introduction to RubyAn introduction to Ruby
An introduction to Ruby
Wes Oldenbeuving
?
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
Masters Academy
?
Introduction to Python decorators
Introduction to Python decoratorsIntroduction to Python decorators
Introduction to Python decorators
rikbyte
?
Metaprogramovanie #1
Metaprogramovanie #1Metaprogramovanie #1
Metaprogramovanie #1
Jano Suchal
?
Cucumber testing
Cucumber testingCucumber testing
Cucumber testing
Yogesh Waghmare
?
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
Jesper van Engelen
?
Simplifying Code: Monster to Elegant in 5 Steps
Simplifying Code: Monster to Elegant in 5 StepsSimplifying Code: Monster to Elegant in 5 Steps
Simplifying Code: Monster to Elegant in 5 Steps
tutec
?
Powershell function
Powershell functionPowershell function
Powershell function
LearningTech
?
Introduction to CoffeeScript
Introduction to CoffeeScriptIntroduction to CoffeeScript
Introduction to CoffeeScript
Stalin Thangaraj
?
§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands
§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands
§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands
Ksenia Rogachenko
?
Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)
brian d foy
?
³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù
³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù
³Ò°ù²¹¾±±ô²õ¤Ç¥É¥á¥¤¥óñl¶¯Éè¼Æ¤òŒg¼ù¤¹¤ëʱ¤Î¿±Ëù
Takuma Watabiki
?
Real life-coffeescript
Real life-coffeescriptReal life-coffeescript
Real life-coffeescript
David Furber
?
Introduction to Python decorators
Introduction to Python decoratorsIntroduction to Python decorators
Introduction to Python decorators
rikbyte
?
Metaprogramovanie #1
Metaprogramovanie #1Metaprogramovanie #1
Metaprogramovanie #1
Jano Suchal
?
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
Jesper van Engelen
?
Simplifying Code: Monster to Elegant in 5 Steps
Simplifying Code: Monster to Elegant in 5 StepsSimplifying Code: Monster to Elegant in 5 Steps
Simplifying Code: Monster to Elegant in 5 Steps
tutec
?
§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands
§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands
§®§Ú§ç§Ñ§Ú§Ý §¬§â§Ñ§Û§ß§ð§Ü. Form api: ajax-commands
Ksenia Rogachenko
?

Similar to Ruby Metaprogramming (20)

A linguagem de programa??o Ruby - Robson "Duda" Sejan Soares Dornelles
A linguagem de programa??o Ruby - Robson "Duda" Sejan Soares DornellesA linguagem de programa??o Ruby - Robson "Duda" Sejan Soares Dornelles
A linguagem de programa??o Ruby - Robson "Duda" Sejan Soares Dornelles
Tchelinux
?
CoffeeScript - A Rubyist's Love Affair
CoffeeScript - A Rubyist's Love AffairCoffeeScript - A Rubyist's Love Affair
CoffeeScript - A Rubyist's Love Affair
Mark
?
Why ruby
Why rubyWhy ruby
Why ruby
rstankov
?
How To Test Everything
How To Test EverythingHow To Test Everything
How To Test Everything
noelrap
?
Ruby
RubyRuby
Ruby
Kerry Buckley
?
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and JasmineSingle Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Paulo Ragonha
?
Good Evils In Perl (Yapc Asia)
Good Evils In Perl (Yapc Asia)Good Evils In Perl (Yapc Asia)
Good Evils In Perl (Yapc Asia)
Kang-min Liu
?
Attributes Unwrapped: Lessons under the surface of active record
Attributes Unwrapped: Lessons under the surface of active recordAttributes Unwrapped: Lessons under the surface of active record
Attributes Unwrapped: Lessons under the surface of active record
.toster
?
Ruby/Rails
Ruby/RailsRuby/Rails
Ruby/Rails
rstankov
?
Testing Ruby with Rspec (a beginner's guide)
Testing Ruby with Rspec (a beginner's guide)Testing Ruby with Rspec (a beginner's guide)
Testing Ruby with Rspec (a beginner's guide)
Vysakh Sreenivasan
?
PHP PPT FILE
PHP PPT FILEPHP PPT FILE
PHP PPT FILE
AbhishekSharma2958
?
Ruby Topic Maps Tutorial (2007-10-10)
Ruby Topic Maps Tutorial (2007-10-10)Ruby Topic Maps Tutorial (2007-10-10)
Ruby Topic Maps Tutorial (2007-10-10)
Benjamin Bock
?
Dsl
DslDsl
Dsl
phoet
?
Desarrollando aplicaciones web en minutos
Desarrollando aplicaciones web en minutosDesarrollando aplicaciones web en minutos
Desarrollando aplicaciones web en minutos
Edgar Suarez
?
Metaprogramming
MetaprogrammingMetaprogramming
Metaprogramming
joshbuddy
?
Metaprogramming in Ruby
Metaprogramming in RubyMetaprogramming in Ruby
Metaprogramming in Ruby
ConFoo
?
Ruby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code style
Ruby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code styleRuby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code style
Ruby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code style
Anton Shemerey
?
Intro to ruby
Intro to rubyIntro to ruby
Intro to ruby
Heather Campbell
?
Dutch PHP Conference 2013: Distilled
Dutch PHP Conference 2013: DistilledDutch PHP Conference 2013: Distilled
Dutch PHP Conference 2013: Distilled
Zumba Fitness - Technology Team
?
Steady with ruby
Steady with rubySteady with ruby
Steady with ruby
Christopher Spring
?
A linguagem de programa??o Ruby - Robson "Duda" Sejan Soares Dornelles
A linguagem de programa??o Ruby - Robson "Duda" Sejan Soares DornellesA linguagem de programa??o Ruby - Robson "Duda" Sejan Soares Dornelles
A linguagem de programa??o Ruby - Robson "Duda" Sejan Soares Dornelles
Tchelinux
?
CoffeeScript - A Rubyist's Love Affair
CoffeeScript - A Rubyist's Love AffairCoffeeScript - A Rubyist's Love Affair
CoffeeScript - A Rubyist's Love Affair
Mark
?
How To Test Everything
How To Test EverythingHow To Test Everything
How To Test Everything
noelrap
?
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and JasmineSingle Page Web Applications with CoffeeScript, Backbone and Jasmine
Single Page Web Applications with CoffeeScript, Backbone and Jasmine
Paulo Ragonha
?
Good Evils In Perl (Yapc Asia)
Good Evils In Perl (Yapc Asia)Good Evils In Perl (Yapc Asia)
Good Evils In Perl (Yapc Asia)
Kang-min Liu
?
Attributes Unwrapped: Lessons under the surface of active record
Attributes Unwrapped: Lessons under the surface of active recordAttributes Unwrapped: Lessons under the surface of active record
Attributes Unwrapped: Lessons under the surface of active record
.toster
?
Testing Ruby with Rspec (a beginner's guide)
Testing Ruby with Rspec (a beginner's guide)Testing Ruby with Rspec (a beginner's guide)
Testing Ruby with Rspec (a beginner's guide)
Vysakh Sreenivasan
?
Ruby Topic Maps Tutorial (2007-10-10)
Ruby Topic Maps Tutorial (2007-10-10)Ruby Topic Maps Tutorial (2007-10-10)
Ruby Topic Maps Tutorial (2007-10-10)
Benjamin Bock
?
Desarrollando aplicaciones web en minutos
Desarrollando aplicaciones web en minutosDesarrollando aplicaciones web en minutos
Desarrollando aplicaciones web en minutos
Edgar Suarez
?
Metaprogramming
MetaprogrammingMetaprogramming
Metaprogramming
joshbuddy
?
Metaprogramming in Ruby
Metaprogramming in RubyMetaprogramming in Ruby
Metaprogramming in Ruby
ConFoo
?
Ruby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code style
Ruby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code styleRuby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code style
Ruby: OOP, metaprogramming, blocks, iterators, mix-ins, duck typing. Code style
Anton Shemerey
?

Recently uploaded (20)

Appreciations - Feb 25.pptxhdhdhdhdhdhdhd
Appreciations - Feb 25.pptxhdhdhdhdhdhdhdAppreciations - Feb 25.pptxhdhdhdhdhdhdhd
Appreciations - Feb 25.pptxhdhdhdhdhdhdhd
preetheshparmar
?
NSU KPCAM M1 Library Services Orientation
NSU KPCAM M1 Library Services OrientationNSU KPCAM M1 Library Services Orientation
NSU KPCAM M1 Library Services Orientation
Julie Sarpy
?
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
?
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptxS. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
sachin7989
?
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
heathfieldcps1
?
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialPass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Jenny408767
?
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
?
hdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdh
hdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdhhdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdh
hdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdh
preetheshparmar
?
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
?
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
?
MIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel HolznerMIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel Holzner
MIPLM
?
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
?
MIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos RaftisMIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos Raftis
MIPLM
?
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
?
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMCWorld Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
jaspervedamvemavarap
?
ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...
ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...
ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...
DR .PALLAVI PATHANIA
?
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
?
Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17
Celine George
?
CRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial PlansCRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial Plans
City and Regional Planning, METU
?
Appreciations - Feb 25.pptxhdhdhdhdhdhdhd
Appreciations - Feb 25.pptxhdhdhdhdhdhdhdAppreciations - Feb 25.pptxhdhdhdhdhdhdhd
Appreciations - Feb 25.pptxhdhdhdhdhdhdhd
preetheshparmar
?
NSU KPCAM M1 Library Services Orientation
NSU KPCAM M1 Library Services OrientationNSU KPCAM M1 Library Services Orientation
NSU KPCAM M1 Library Services Orientation
Julie Sarpy
?
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
?
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptxS. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
sachin7989
?
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
heathfieldcps1
?
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialPass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study Material
Jenny408767
?
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
?
hdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdh
hdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdhhdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdh
hdjhdjhdjhdjhdjdhdjhdjdhdjhdjdhdjhdjdhjdh
preetheshparmar
?
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
?
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
?
MIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel HolznerMIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel Holzner
MIPLM
?
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
?
MIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos RaftisMIPLM subject matter expert Nicos Raftis
MIPLM subject matter expert Nicos Raftis
MIPLM
?
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
?
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMCWorld Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
jaspervedamvemavarap
?
ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...
ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...
ENT Disorders : Common ear, nose, and throat (ENT) problems in adults include...
DR .PALLAVI PATHANIA
?
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
?
Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17
Celine George
?

Ruby Metaprogramming

  • 2. Name: Thaichor Seng Position: Junior Developer at Yoolk.Inc I?m currently working on creating Restaurant Menu application using Ruby on Rails.
  • 3. ? Sugar Syntax ? Dynamic Language ? English Like ? Lots of built-in methods ? Metaprogramming
  • 4. Metaprogramming is writing code that writes code. Here are some method using for metaprogramming: ? define_method() ? method_missing() ? class_eval() ? eval()
  • 5. class MyClass define_method :my_method do |my_arg| my_arg * 3 end # def my_method(my_arg) # my_arg * 3 # end end obj = MyClass.new obj.my_method(2) # => 6
  • 6. class Currency def initialize(value) @value = value end [:usd, :riel, :yen, :bat].each do |method| define_method ¡°to_#{method}¡± do ¡°#{@value.to_s} #{method.to_s}¡± end end end c = Currency.new(14) c.to_usd # 14 usd c.to_riel # 14 riel
  • 7. class Lawyer end nick = Lawyer.new nick.talk_simple NoMethodError: undefined method ?talk_simple' for #<Lawyer:0x3c848>
  • 8. class Lawyer def method_missing(method, *args) puts "You called: #{method}(#{args.join(', ')})" end end nick = Lawyer.new nick.talk_simple # You called talk_simple() Nick.talk(a, b) # You called talk(a, b)
  • 9. class MyOpenStruct def initialize @attributes = {} end def method_missing(name, *args) attribute = name.to_s if attribute =~ /=$/ @attributes[attribute.chop] = args[0] else @attributes[attribute] end end end icecream = MyOpenStruct.new icecream.flavor = "vanilla¡° # nil icecream.flavor # vanilla
  • 10. def add_method_to(a_class) a_class.class_eval do def m 'Hello!' end end end add_method_to String "abc".m # => "Hello!¡°
  • 11. map = { "update" => "deploy:update" , "restart" => "deploy:restart" , "cleanup" => "deploy:cleanup" } map.each do |old, new| eval "task(#{old.inspect}) do warn "[DEPRECATED] `#{old}' is deprecated. Use `#{new}' instead." find_and_execute_task(#{new.inspect}) end" end