-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathChuzzleKit.podspec
More file actions
23 lines (19 loc) · 818 Bytes
/
ChuzzleKit.podspec
File metadata and controls
23 lines (19 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'ChuzzleKit'
`xcodebuild -project #{s.name}.xcodeproj -showBuildSettings` =~ /CURRENT_PROJECT_VERSION = ((\d+\.)+\d+)/
abort("No version detected") if $1.nil?
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.11'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.visionos.deployment_target = '1.0'
s.version = $1
s.requires_arc = true
s.source_files = 'Sources/*.{m,h}'
s.source = { :git => "https://github.com/mxcl/#{s.name}.git", :tag => s.version }
s.license = 'MIT'
s.summary = 'A chuzzled object is `nil` if it is falsy, otherwise it has its falsy parts removed.'
s.homepage = "http://github.com/mxcl/#{s.name}"
s.social_media_url = 'https://twitter.com/mxcl'
s.authors = { 'Max Howell' => 'mxcl@me.com' }
end