summaryrefslogtreecommitdiffstats
path: root/lib/blink/component.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/blink/component.rb')
-rw-r--r--lib/blink/component.rb21
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