class RKelly::JS::Property
Attributes
attributes[RW]
binder[RW]
function[RW]
name[RW]
value[RW]
Public Class Methods
new(name, value, binder = nil, function = nil, attributes = [])
click to toggle source
# File lib/rkelly/js/property.rb, line 5 def initialize(name, value, binder = nil, function = nil, attributes = []) @name = name @value = value @binder = binder @function = function @attributes = attributes end