Files
cocoafob/CocoaFob.podspec
Christian Tietze f706f2056e Update Swift 5 for Xcode 14 and Ventura (#62)
* bump macOS deployment target and use recommended Xcode 14.2 settings

* bump SPM to Swift 5.5 and macOS 10.13 for the next release

* bump cocoapods version for next release
2022-12-24 01:14:12 +01:00

24 lines
939 B
Ruby

Pod::Spec.new do |s|
s.name = 'CocoaFob'
s.version = '2.4.0'
s.swift_versions = ["5.7", "5.6", "5.5", "5.4", '5.3', '5.2', '5.1', '5.0']
s.summary = 'macOS app registration code verification & generation.'
s.description = <<-DESC
CocoaFob is a set of helper code snippets for registration code generation and
verification in Cocoa applications, integrated with registration code
generation in Potion Store <http://www.potionfactory.com/potionstore> and
FastSpring <http://fastspring.com>.
DESC
s.homepage = 'https://github.com/glebd/cocoafob'
s.license = 'BSD'
s.author = { 'Gleb Dolgich' => '@glebd' }
s.source = { :git => 'https://github.com/glebd/cocoafob.git', :tag => s.version }
s.module_name = 'CocoaFob'
s.platform = :osx
s.osx.deployment_target = '10.13'
s.source_files = ['swift5/CocoaFob/*.swift']
end