Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 690269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:25:07+00:00 2026-05-14T02:25:07+00:00

I would like to add some debugs for my simple ruby functions and I

  • 0

I would like to add some debugs for my simple ruby functions and I wrote a function as below,

def debug(&block)
  varname = block.call.to_s
  puts "#{varname} = #{eval(varname,block)}"
end

debug {:x} #prints x = 5
debug {:y} #prints y = 5

I understand that eval is evil. So I have two questions.

  1. Is there any way to write that debug method without using eval? If NO is there a preferred way to do this?
  2. Is there any way to pass a list of arguments to this method? I would ideally prefer debug {:x, :y. :anynumOfvariables}. I could not quite figure out how to factor that into the debug method (i.e, to take a list of arguments)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T02:25:07+00:00Added an answer on May 14, 2026 at 2:25 am

    Just use arrays. You can use the Array method to ensure that you will always have an array, even if someone passes in only a single value:

    def debug(&block)
      Array(block[]).each do |var| puts "#{var} = #{eval var.to_s, block}" end
    end
    
    x, y = 3, 5
    
    debug {:x} # => "x = 3"
    debug {[:x, :y]} # => "x = 3" "y = 5"
    

    BTW: passing a block as the binding no longer works in Ruby 1.9. (Despite the fact that the documentation says it does work.) You have to explicitly call Proc#binding to get a Binding object for that Proc:

    def debug(&block)
      Array(block.()).flatten.each do |var|
        puts "#{var} = #{eval var.to_s, block.binding}"
      end
    end
    

    Fortunately, this already works in Ruby 1.8, so you can futureproof your code by including it.

    An alternative would be to forgo the block altogether. I mean, you already force the user of the debug to use the unfamiliar idiom of passing arguments in the block instead of in parentheses. Why not force them to just pass the binding instead?

    def debug(*vars, bnd)
      vars.each do |var|
        puts "#{var} = #{eval var.to_s, bnd}"
      end
    end
    
    x, y = 3, 5
    
    debug :x, binding # => "x = 3"
    debug :x, :y, binding # => "x = 3" "y = 5"
    

    This has the added flexibility that they can actually pass a different binding than the one at the callsite, e.g. if they want to actually debug a piece of code in a different piece of the application.


    BTW: here’s some fun with Ruby 1.9.2’s parameter introspection (Proc#parameters):

    def debug(&block)
      block.parameters.map(&:last).each do |var|
        puts "#{var} = #{eval var.to_s, block.binding}"
      end
    end
    
    x, y = 3, 5
    
    debug {|x|} # => "x = 3"
    debug {|x, y|} # => "x = 3" "y = 5"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.