diff options
author | elijah <elijah@riseup.net> | 2013-03-08 21:49:45 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-03-08 21:49:45 -0800 |
commit | ebc1724821ea91b488a8289079d5fff605b03e3e (patch) | |
tree | d53e89193b2cc357f70a716f1ca370ae053e494c | |
parent | b683dcba7338ef501ad81c87c9acd7f34a670428 (diff) |
added support for development tag
-rw-r--r-- | lib/leap_cli/config/object.rb | 4 |
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 |