-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfig.podspec
21 lines (16 loc) · 901 Bytes
/
Config.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = "Config"
spec.version = "2.0.0"
spec.summary = "Use a JSON file as an app configuration, reach keys with dot notation, written in Swift"
spec.description = <<-DESC
Config is a framework written in Swift that makes it easy for you to use JSON file as a configuration, with JSON keys in dot notation in your application. Also supports SwiftUI!
DESC
spec.homepage = "https://github.com/mustafakarakus/Config"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Mustafa" => "karakusmustafa@gmail.com" }
spec.ios.deployment_target = "15.0"
spec.swift_version = "5.5"
spec.source = { :git => "https://github.com/mustafakarakus/Config.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Config/**/*"
spec.exclude_files = "Sources/Config/*.plist"
end