forked from Cocoanetics/POEditorAPI
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPOEditorAPI.podspec
More file actions
19 lines (18 loc) · 793 Bytes
/
Copy pathPOEditorAPI.podspec
File metadata and controls
19 lines (18 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'POEditorAPI'
spec.version = '1.1.0'
spec.summary = "A POEditor.com API wrapper, written in Swift 3"
spec.homepage = "https://github.com/Cocoanetics/POEditorAPI"
spec.author = { "Oliver Drobnik" => "oliver@cocoanetics.com" }
spec.documentation_url = 'https://github.com/Cocoanetics/POEditorAPI'
spec.social_media_url = 'https://twitter.com/cocoanetics'
spec.source = { :git => "https://github.com/Cocoanetics/POEditorAPI.git", :tag => spec.version.to_s }
spec.ios.deployment_target = '8.0'
spec.license = 'BSD'
spec.requires_arc = true
spec.subspec 'Core' do |ss|
ss.ios.deployment_target = '8.0'
ss.osx.deployment_target = '10.10'
ss.source_files = 'Core/Source/*.swift'
end
end