-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLastMile.podspec
More file actions
17 lines (17 loc) · 843 Bytes
/
LastMile.podspec
File metadata and controls
17 lines (17 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "LastMile"
spec.version = "1.0.0"
spec.summary = "Decodes data encoded in JSON to Swift objects"
spec.description = <<-DESC
Decodes JSON into objects, with simple, elegant syntax, flexible and resilient parsing, and insightful error reporting.
DESC
spec.homepage = "https://github.com/jbelkins/LastMile-iOS"
spec.license = "MIT"
spec.author = "Josh Elkins"
spec.ios.deployment_target = "9.0"
spec.osx.deployment_target = "10.9"
spec.swift_version = "5.0"
spec.source = { git: "https://github.com/jbelkins/LastMile-iOS.git", tag: "v#{spec.version}" }
spec.source_files = "Sources/LastMile/**/*.swift"
spec.framework = "Foundation"
end