-
Notifications
You must be signed in to change notification settings - Fork 0
/
IsNotEmpty.podspec
24 lines (20 loc) · 994 Bytes
/
IsNotEmpty.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |spec|
spec.name = "IsNotEmpty"
spec.version = "0.0.1"
spec.summary = "A Boolean value for `Collection`s that returns `true` if they are not empty."
spec.description = <<-DESC
A Boolean value for `Collection`s that returns `true` if they are not empty. It
may seem silly, but it can be more readable than using a ! in front of isEmpty,
especially in a long chain of variables.
DESC
spec.homepage = "https://github.com/SlaunchaMan/IsNotEmpty"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Jeff Kelley" => "[email protected]" }
spec.source = { :git => "https://github.com/SlaunchaMan/IsNotEmpty.git", :tag => "#{spec.version}" }
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.9"
spec.watchos.deployment_target = "2.0"
spec.tvos.deployment_target = "9.0"
spec.swift_versions = ["5.1"]
spec.source_files = "Sources/IsNotEmpty/*.swift"
end