-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJSONtoCodable.podspec
More file actions
25 lines (20 loc) · 886 Bytes
/
JSONtoCodable.podspec
File metadata and controls
25 lines (20 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "JSONtoCodable"
s.version = "2.1.1"
s.summary = "A generating tool from Raw JSON to Codable"
s.description = <<-DESC
A generating tool from Raw JSON to Codable.
DESC
s.homepage = "https://github.com/YutoMizutani/JSONtoCodable"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Yuto Mizutani" => "yuto.mizutani.dev@gmail.com" }
s.source = { :git => "https://github.com/YutoMizutani/JSONtoCodable.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/EXPENSIVE_MAN'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '11.0'
s.requires_arc = true
s.source_files = 'Sources/**/*.swift'
s.swift_version = '4.2'
end