Sha256: b7b57c3c9717547e75cb7ab41b08bc00a90e4afcce70e42a03c6fb7c0d04d6cf
Contents?: true
Size: 905 Bytes
Versions: 32
Compression:
Stored size: 905 Bytes
Contents
require 'cocoapods-bb-PodAssistant/helpers' # 公共spec配置库 # 业务线公共spec配置库 # 本地spec配置库 = 公共spec+业务线spec合并数据 # 数据格式 json {key,val} module BB class StableSpecs def readData(yml_path) return YamlFilesHelper.read_stable_lock_yaml(yml_path) end def writeData(yml_path, data) YamlFilesHelper.save_stable_lock_yaml(yml_path, data) end # podfile 更新配置文件使用(通用) def update_stable_lock(yml_path, pod_targets) YamlFilesHelper.save_stable_podlock(yml_path, pod_targets) puts "[成功] 更新ymal配置文件#{yml_path}".green end # 更新podfile配置文件使用(项目) def update_local_stable_lock(yml_path, pod_targets) YamlFilesHelper.save_local_stable_podlock(yml_path, pod_targets) puts "[成功] 更新ymal配置文件#{yml_path}".green end end end
Version data entries
32 entries across 32 versions & 1 rubygems