-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCocoaFob.podspec
23 lines (20 loc) · 939 Bytes
/
CocoaFob.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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