class PodPrebuild::State
Public Class Methods
new()
click to toggle source
# File lib/cocoapods-binary-cache/state_store.rb, line 7 def initialize @store = { :cache_validation => CacheValidationResult.new } end
Public Instance Methods
cache_validation()
click to toggle source
# File lib/cocoapods-binary-cache/state_store.rb, line 17 def cache_validation @store[:cache_validation] end
update(data)
click to toggle source
# File lib/cocoapods-binary-cache/state_store.rb, line 13 def update(data) @store.merge!(data) end