summaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/provider.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/leap_cli/config/provider.rb')
-rw-r--r--lib/leap_cli/config/provider.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/leap_cli/config/provider.rb b/lib/leap_cli/config/provider.rb
new file mode 100644
index 00000000..0d8bc1f3
--- /dev/null
+++ b/lib/leap_cli/config/provider.rb
@@ -0,0 +1,22 @@
+#
+# Configuration class for provider.json
+#
+
+module LeapCli; module Config
+ class Provider < Object
+ attr_reader :environment
+ def set_env(e)
+ if e == 'default'
+ @environment = nil
+ else
+ @environment = e
+ end
+ end
+ def provider
+ self
+ end
+ def validate!
+ # nothing here yet :(
+ end
+ end
+end; end