summaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/tag.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-07-01 14:49:27 -0700
committerelijah <elijah@riseup.net>2016-07-01 14:49:27 -0700
commit174dbf380fe1b0962a9e173caa6dd0a0f76a14e1 (patch)
treed2f1414652d2c0fbd1003347c2abf2be1ffff473 /lib/leap_cli/config/tag.rb
parent2d277c7d2aa3ddfbe3c2c65f68d7290930934b70 (diff)
parentf9284ff22da6eec685782dbc9aa4a4ded0efec29 (diff)
Merge branch 'feature/newcli' into develop
Diffstat (limited to 'lib/leap_cli/config/tag.rb')
-rw-r--r--lib/leap_cli/config/tag.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/leap_cli/config/tag.rb b/lib/leap_cli/config/tag.rb
deleted file mode 100644
index 6bd8d1e..0000000
--- a/lib/leap_cli/config/tag.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-#
-# A class for node services or node tags.
-#
-#
-
-module LeapCli; module Config
-
- class Tag < Object
- attr_reader :node_list
-
- def initialize(environment=nil)
- super(environment)
- @node_list = Config::ObjectList.new
- end
-
- # don't copy the node list pointer when this object is dup'ed.
- def initialize_copy(orig)
- super
- @node_list = Config::ObjectList.new
- end
-
- end
-
-end; end