module HaikuGadget # This subclass is used for development/test environment testing of specific # line templates by displaying them in all caps so they are easier to recognize. class DebugLineTemplate < LineTemplate def real_words # if !Rails.env.production? super.map { |w| w.upcase } # else # super # end end end end