aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/object.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-03-08 21:49:45 -0800
committerelijah <elijah@riseup.net>2013-03-08 21:49:45 -0800
commitebc1724821ea91b488a8289079d5fff605b03e3e (patch)
treed53e89193b2cc357f70a716f1ca370ae053e494c /lib/leap_cli/config/object.rb
parentb683dcba7338ef501ad81c87c9acd7f34a670428 (diff)
downloadleap_cli-ebc1724821ea91b488a8289079d5fff605b03e3e.tar.gz
leap_cli-ebc1724821ea91b488a8289079d5fff605b03e3e.tar.bz2
added support for development tag
Diffstat (limited to 'lib/leap_cli/config/object.rb')
-rw-r--r--lib/leap_cli/config/object.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/config/object.rb b/lib/leap_cli/config/object.rb
index 5a5c7b1..e4fe619 100644
--- a/lib/leap_cli/config/object.rb
+++ b/lib/leap_cli/config/object.rb
@@ -184,10 +184,10 @@ module LeapCli
end
#
- # returns a list of nodes that match similar production level (production, local, testing, etc)
+ # returns a list of nodes that match similar production level (production, local, development, etc)
#
def nodes_like_me
- nodes[:production => @node.production, :local => @node.local]
+ nodes[:production => @node.production, :local => @node.local, :development => @node.development]
end
class FileMissing < Exception