Sha256: 5e677aeee655391b949f981e8918dcffc007045b424eec0bb07c80e0656ff333

Contents?: true

Size: 419 Bytes

Versions: 1

Compression:

Stored size: 419 Bytes

Contents

class UIC::RenderPlugin
	include UIC::FileBacked
	def initialize( file )
		self.file = file
	end
end

class UIC::Application::RenderPlugin < UIC::RenderPlugin
	include UIC::ElementBacked
	# @!parse extend UIC::ElementBacked::ClassMethods
	xmlattribute :id
	xmlattribute :src
	def initialize(application,el)
		self.owner = application
		self.el    = el
		super( application.absolute_path(src) )
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
RUIC-0.6.1 lib/ruic/renderplugin.rb