Search code examples
ruby-on-railsruby-on-rails-4ruby-on-rails-5hamlruby-on-rails-6

What is the equivalent of <% debug @variable %> for Haml?


I have an annoying view problem that I'm trying to debug and no where on the Haml Documentation Haml Docs does it specify how to debug view code. This is very annoying and all I need is to debug a variable. Can someone please help me with this? Thank you.


Solution

  • In Haml, to print a result on the page, you use = sign, so in your case it is:

    = @variable.inspect
    

    To write a conditional statement, for instance if else, you would use -:

    -if condition
      # logic
    -else
      #logic
    

    Note, there is no end.