Sha256: e9c1759e02315f6b0f752ec60a111170ad56e4fdad07aaf99cb07efbd17bc3de
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
# encoding: ascii-8bit # Copyright 2022 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU Affero General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # This program may also be used under the terms of a commercial or # enterprise edition license of COSMOS if purchased from the # copyright holder module Cosmos class ToolConfigModel def self.list_configs(tool, scope: $cosmos_scope) Store.hkeys("#{scope}__config__#{tool}") end def self.load_config(tool, name, scope: $cosmos_scope) Store.hget("#{scope}__config__#{tool}", name) end def self.save_config(tool, name, data, scope: $cosmos_scope) Store.hset("#{scope}__config__#{tool}", name, data) end def self.delete_config(tool, name, scope: $cosmos_scope) Store.hdel("#{scope}__config__#{tool}", name) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cosmos-5.0.5 | lib/cosmos/models/tool_config_model.rb |
cosmos-5.0.4 | lib/cosmos/models/tool_config_model.rb |