5
6
7
8
9
10
11
12
13
|
# File 'lib/mozaic/component/define.rb', line 5
def define_component name, options = {}
Mozaic.configure do |config|
if block_given?
config.define_component name.to_sym, options, &Proc.new
else
config.define_component name.to_sym, options
end
end
end
|