mirror of
https://github.com/glebd/cocoafob.git
synced 2026-05-30 06:45:08 +00:00
f706f2056e
* 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
24 lines
939 B
Ruby
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
|