forked from stremsdoerfer/StreemMapper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStreemMapper.podspec
More file actions
16 lines (16 loc) · 857 Bytes
/
StreemMapper.podspec
File metadata and controls
16 lines (16 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "StreemMapper"
s.version = "8.0.0"
s.summary = "A JSON deserialization library for Swift"
s.homepage = "https://github.com/stremsdoerfer/StreemMapper"
s.license = "Apache License, Version 2.0"
s.author = {"Keith Smiley" => "keithbsmiley@gmail.com", "Emilien Stremsdoerfer" => "emstre@gmail.com" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/stremsdoerfer/StreemMapper.git", :tag => s.version }
s.requires_arc = true
s.source_files = "Sources/*.swift"
s.module_name = "StreemMapper"
end