-
Notifications
You must be signed in to change notification settings - Fork 62
/
Marshal.podspec
20 lines (20 loc) · 1.07 KB
/
Marshal.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Marshal"
s.version = "1.2.8"
s.summary = "Marshal is a simple, lightweight framework for safely extracting values from [String: AnyObject]"
s.description = <<-DESC
In Swift, we all deal with JSON, plists, and various forms of [String: Any]. Marshal believes you don't need a Ph.D. in monads or magic mirrors to deal with these in an expressive and type safe way. Marshal will help you write declarative, performant, error handled code using the power of Protocol Oriented Programming™.
DESC
s.homepage = "https://github.com/utahiosmac/Marshal"
s.license = "MIT"
s.author = "Utah iOS & Mac"
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/utahiosmac/Marshal.git",
:tag => "#{s.version}" }
s.source_files = "Marshal/**/*.swift", "Sources/**/*.swift"
s.requires_arc = true
s.module_name = "Marshal"
end