Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a way to dump the structure of an object, similar to the PHP functions print_r and var_dump for debugging reasons.

share|improve this question

7 Answers

up vote 19 down vote accepted

In views:

DebugHelper’s debug(object)

In controllers, models, and other code:

puts YAML::dump(object)

Source

share|improve this answer

The .inspect method of any object should format is correctly for display, just do..

<%= theobject.inspect %>

The .methods method may also be of use:

<%= theobject.methods.inspect %>

It may help to put that in <pre> tags, depending on the data

share|improve this answer
yes this should be the answer imho – Felipe Almeida Mar 3 '12 at 22:41

You can also use YAML::dump shorthand (y) under Rails console:

>> y User.first
--- !ruby/object:User 
attributes: 
  created_at: 2009-05-24 20:16:11.099441
  updated_at: 2009-05-26 22:46:29.501245
  current_login_ip: 127.0.0.1
  id: "1"
  current_login_at: 2009-05-24 20:20:46.627254
  login_count: "1"
  last_login_ip: 
  last_login_at: 
  login: admin
attributes_cache: {}

=> nil
>>

If you want to just preview some string contents, try using raise (for example in models, controllers or some other inaccessible place). You get the backtrace for free:)

>> raise Rails.root
RuntimeError: /home/marcin/work/github/project1
    from (irb):17
>>

I also really encourage you to try ruby-debug:

It's incredibly helpful!

share|improve this answer

In a view you can use <%= debug(yourobject) %> which will generate a YAML view of your data. If you want something in your log you should use logger.debug yourobject.inspect.

share|improve this answer

If you just want the relevant data to be displayed to stdout (the terminal output if you're running from the command line), you can use p some_object.

share|improve this answer

I use this :)

require 'yaml'

module AppHelpers
  module Debug
    module VarDump

      class << self

        def dump(dump_object, file_path)
          File.open file_path, "a+" do |log_file|
            current_date = Time.new.to_s + "\n" + YAML::dump(dump_object) + "\n"
            log_file.puts current_date
            log_file.close
          end
        end

      end

    end
  end
end
share|improve this answer

Lately I'm using awesome_print's ap method which works on the console as well as in views.

The type-specific colored output really makes a difference if you need to visually scan for String or Numeric objects (Although I had to tweak my stylesheet a little bit in order to get a polished look)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.