Flowdock
method

interpolate_label

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: TableRow
interpolate_label() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/fixture_set/table_row.rb, line 85
        def interpolate_label
          # interpolate the fixture label
          @row.each do |key, value|
            @row[key] = value.gsub("$LABEL", @label.to_s) if value.is_a?(String)
          end
        end
Register or log in to add new notes.