Pod::Spec.new do |s| s.name = 'DictionaryCoding' s.version = '1.0.3' s.summary = 'Swift Decoder/Encoder which converts to/from dictionaries.' s.description = <<-DESC This is an implementation of Swift's Encoder/Decoder protocols which uses NSDictionary as its underlying container mechanism. It allows you to take a native swift class or struct that confirms to the Codable protocol and convert it to, or initialise it from, a dictionary. DESC s.homepage = 'https://github.com/elegantchaos/DictionaryCoding' s.license = { :type => 'custom', :file => 'LICENSE.md' } s.author = { 'Sam Deane' => 'sam@elegantchaos.com' } s.source = { :git => 'https://github.com/elegantchaos/DictionaryCoding.git', :tag => s.version.to_s } s.platform = :osx s.swift_version = "4.1" s.osx.deployment_target = "10.12" s.source_files = 'Sources/DictionaryCoding/**/*' end