Method: Pod::Lockfile#to_hash
- Defined in:
- lib/cocoapods-core/lockfile.rb
permalink #to_hash ⇒ Hash{String=>Array,Hash,String}
Returns a hash representation of the Lockfile.
368 369 370 371 372 373 374 |
# File 'lib/cocoapods-core/lockfile.rb', line 368 def to_hash hash = {} internal_data.each do |key, value| hash[key] = value unless value.nil? || value.empty? end hash end |