-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathObjectEncoder.podspec
More file actions
19 lines (17 loc) · 820 Bytes
/
Copy pathObjectEncoder.podspec
File metadata and controls
19 lines (17 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'ObjectEncoder'
s.version = '0.2.0'
s.summary = 'Swift Encoders implementation using `[String: Any]`, `[Any]` or `Any` as payload.'
s.description = 'SE-0167 Swift Encoders implementation using [String: Any], [Any] or Any as payload.'
s.homepage = 'https://github.com/norio-nomura/ObjectEncoder'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Norio Nomura'
s.source = { :git => 'https://github.com/norio-nomura/ObjectEncoder.git', :tag => "#{s.version}" }
s.source_files = 'Sources/ObjectEncoder/*.swift'
s.osx.deployment_target = '10.10'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.cocoapods_version = '>= 1.4.0'
s.swift_version = '4.0'
end