-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAOperation.podspec
29 lines (21 loc) · 928 Bytes
/
AOperation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
#
s.name = 'AOperation'
s.version = '2.0.0'
s.license = { :type => "MIT", :file => 'LICENSE' }
s.summary = 'A wrapper on Operation and OperationQueue Classes'
s.homepage = 'https://github.com/ssamadgh/AOperation.git'
s.author = { 'Seyed Samad Gholamzadeh' => '[email protected]' }
s.source = { :git => 'https://github.com/ssamadgh/AOperation.git', :tag => s.version }
# s.documentation_url = 'https://ssamadgh.github.io/AOperation/'
s.platform = :ios
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Source/Shared/**/*.swift'
s.ios.source_files = 'Source/**/*.swift'
s.osx.source_files = 'Source/Shared_iOS_macOS/**/*.swift', 'Source/Shared_iOS_macOS_tvOS/**/*.swift'
s.tvos.source_files = 'Source/Shared_iOS_macOS_tvOS/**/*.swift'
s.swift_version = '5'
end