From 1f95fe2328b721ae293d9acfca895a7603f134a5 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Thu, 21 Apr 2005 19:34:46 +0000 Subject: moving component.rb to type/ git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@209 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/blink/component.rb | 21 --------------------- lib/blink/type/component.rb | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 lib/blink/component.rb create mode 100644 lib/blink/type/component.rb 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 diff --git a/lib/blink/type/component.rb b/lib/blink/type/component.rb new file mode 100644 index 000000000..d0b23a622 --- /dev/null +++ b/lib/blink/type/component.rb @@ -0,0 +1,21 @@ +#!/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 -- cgit