diff options
author | elijah <elijah@riseup.net> | 2016-04-08 12:39:40 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-04-08 12:39:40 -0700 |
commit | 31b4d6c59fb0ad755f2d52e382063eb0b1fca735 (patch) | |
tree | 170ba5504538aef62c905128ea937dd0c40eacbd /lib/leap_cli/config/node.rb | |
parent | 45daf792f8c566689d4a7b59f0a0af19fb316f61 (diff) |
environments: clean up the json inheritence system with a proper environment class, and fix bugs with partials and inheritance. requires latest leap_platform.
Diffstat (limited to 'lib/leap_cli/config/node.rb')
-rw-r--r-- | lib/leap_cli/config/node.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/config/node.rb b/lib/leap_cli/config/node.rb index fe685cf..65735d5 100644 --- a/lib/leap_cli/config/node.rb +++ b/lib/leap_cli/config/node.rb @@ -9,8 +9,8 @@ module LeapCli; module Config class Node < Object attr_accessor :file_paths - def initialize(manager=nil) - super(manager) + def initialize(environment=nil) + super(environment) @node = self @file_paths = [] end |