-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildConfig.swift.podspec
More file actions
25 lines (19 loc) · 920 Bytes
/
BuildConfig.swift.podspec
File metadata and controls
25 lines (19 loc) · 920 Bytes
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
Pod::Spec.new do |s|
s.name = "BuildConfig.swift"
s.version = ENV['POD_VERSION']
s.summary = "Auto-generated BuildConfig for macOS/iOS"
s.description = <<-DESC
BuildConfig.swift is a tool to get strong typed configuration from yamls/jsons.
DESC
s.homepage = "https://github.com/417-72KI/BuildConfig.swift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "417.72KI" => "417.72ki@gmail.com" }
s.social_media_url = "http://twitter.com/417_72ki"
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "12.0"
s.watchos.deployment_target = "8.0"
s.tvos.deployment_target = "15.0"
s.requires_arc = true
s.source = { :http => "https://github.com/417-72KI/BuildConfig.swift/releases/download/#{s.version}/buildconfigswift-v#{s.version}.zip" }
s.preserve_paths = "buildconfigswift"
end