Sha256: 973aef2a967372ede84e4cbf4c83bd59dc62885ba7016cc67850061539e32f48
Contents?: true
Size: 472 Bytes
Versions: 23
Compression:
Stored size: 472 Bytes
Contents
require 'json' class KuberKit::Actions::EnvFileReader include KuberKit::Import[ "shell.local_shell", "ui", env_file_reader: "env_file_reader.action_handler", ] Contract Symbol, Hash => Any def call(env_file_name, options) result = env_file_reader.call(local_shell, env_file_name) ui.print_info(env_file_name.to_s, JSON.pretty_generate(result)) true rescue KuberKit::Error => e ui.print_error("Error", e.message) false end end
Version data entries
23 entries across 23 versions & 1 rubygems