Method: Wombat::Property#initialize

Defined in:
lib/wombat/property.rb

#initialize(options) ⇒ Property

Returns a new instance of Property.

[View source]

5
6
7
8
9
10
11
# File 'lib/wombat/property.rb', line 5

def initialize(options)
  @name = options[:name]
  @selector = options[:selector]
  @format = options[:format]
  @namespaces = options[:namespaces]
  @callback = options[:callback]
end