class RailsDataExplorer::Utils::RdeTableCell
Attributes
css_class[RW]
ruby_formatter[RW]
style[RW]
tag[RW]
title[RW]
value[RW]
Public Class Methods
new(tag, value, opts = {})
click to toggle source
# File lib/rails_data_explorer/utils/rde_table.rb, line 52 def initialize(tag, value, opts = {}) @tag = tag @value = value @css_class = opts[:css_class] @ruby_formatter = opts[:ruby_formatter] @style = opts[:style] @title = opts[:title] end