module ViewData::Commands::Controls::Data

Public Class Methods

example() click to toggle source
# File lib/view_data/commands/controls/data.rb, line 5
def self.example
  {
    :some_attribute => 'some-value',
    :other_attribute => 'other-value',
    :outer_attribute => {
      :inner_attribute => 'inner-value'
    }
  }
end