diff options
author | Luke Kanies <luke@madstop.com> | 2005-04-21 19:34:46 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-04-21 19:34:46 +0000 |
commit | 1f95fe2328b721ae293d9acfca895a7603f134a5 (patch) | |
tree | 064e35cef599db9812f5ac10a3976f6012f49b16 /lib/blink/component.rb | |
parent | 7df572bbdc533b352ff90a137bbfb57045c97c16 (diff) | |
download | puppet-1f95fe2328b721ae293d9acfca895a7603f134a5.tar.gz puppet-1f95fe2328b721ae293d9acfca895a7603f134a5.tar.xz puppet-1f95fe2328b721ae293d9acfca895a7603f134a5.zip |
moving component.rb to type/
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@209 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/blink/component.rb')
-rw-r--r-- | lib/blink/component.rb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/blink/component.rb b/lib/blink/component.rb deleted file mode 100644 index d0b23a622..000000000 --- a/lib/blink/component.rb +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/local/bin/ruby -w - -# $Id$ - -# the object allowing us to build complex structures -# this thing contains everything else, including itself - -require 'blink/type' - -module Blink - class Component < Blink::Type - attr_accessor :name - - @name = :component - @namevar = :name - - @parameters = [ - :name - ] - end -end |