forked from glebd/cocoafob
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CocoaFob.podspec
23 lines (19 loc) · 862 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 = '1.0.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', :branch => 'master' }
s.module_name = 'CocoaFob'
s.platform = :osx
s.osx.deployment_target = '10.10'
s.source_files = ['swift3/CocoaFob/*.swift']
end