2010-09-28 22:08:11 +00:00
|
|
|
module Locomotive
|
|
|
|
module Liquid
|
|
|
|
module Drops
|
|
|
|
class Asset < Base
|
|
|
|
|
|
|
|
def before_method(meth)
|
|
|
|
return '' if @source.nil?
|
|
|
|
|
|
|
|
if not @@forbidden_attributes.include?(meth.to_s)
|
|
|
|
value = @source.send(meth)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-10-10 23:16:43 +00:00
|
|
|
def url
|
|
|
|
@source.source.url
|
|
|
|
end
|
|
|
|
|
2010-09-28 22:08:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|