-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathXcodeEdit.podspec
23 lines (17 loc) · 896 Bytes
/
XcodeEdit.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 = "XcodeEdit"
s.version = "2.7.7"
s.license = "MIT"
s.summary = "Reading and writing the Xcode pbxproj file format, from Swift!"
s.description = <<-DESC
The main goal of this project is to generate project.pbxproj files in the legacy OpenStep format used by Xcode. Using this, a project file can be modified without changing it to XML format and causing a huge git diff.
DESC
s.authors = { "Tom Lokhorst" => "tom@lokhorst.eu" }
s.social_media_url = "https://twitter.com/tomlokhorst"
s.homepage = "https://github.com/tomlokhorst/XcodeEdit"
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.source = { :git => "https://github.com/tomlokhorst/XcodeEdit.git", :tag => s.version }
s.source_files = "Sources/XcodeEdit"
s.swift_version = '5.1'
end