forked from masmovil/poeditor-parser-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMM-PoEditor-Parser.podspec
More file actions
29 lines (22 loc) · 1.07 KB
/
MM-PoEditor-Parser.podspec
File metadata and controls
29 lines (22 loc) · 1.07 KB
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
29
Pod::Spec.new do |s|
s.name = "MM-PoEditor-Parser"
s.version = "1.5.3"
s.summary = "`MM-PoEditor-Parser` generates a swift file with an input strings file from POEditor"
s.description = <<-DESC
`MM-PoEditor-Parser` generates a swift file with an input strings file from POEditor.
DESC
s.homepage = 'https://github.com/masmovil/poeditor-parser-swift'
s.license = { :type => 'APACHE', :file => 'LICENSE' }
s.authors = { 'MásMóvil' => 'info@grupomasmovil.com' }
s.source = { :git => 'https://github.com/masmovil/poeditor-parser-swift.git', :tag => "v#{s.version.to_s}" }
s.social_media_url = 'https://twitter.com/masmovil'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.source_files = "Sources/"
s.exclude_files = [ 'Sources/main.swift' ]
s.public_header_files = "Sources/POEditorParser.h"
s.preserve_paths = [ "bin/poe" ]
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
s.swift_version = '4.2'
s.static_framework = true
end