forked from evgenyneu/swift-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BadgeSwift.podspec
20 lines (19 loc) · 964 Bytes
/
BadgeSwift.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 = "BadgeSwift"
s.version = "8.0.0"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/marketplacer/swift-badge"
s.summary = "Badge view for iOS and tvOS written in Swift"
s.description = <<-DESC
This is a UI widget for iOS that shows a badge.
* The badge is a subclass of UILabel view.
* It can be created and customized from the Storyboard or from the code.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "[email protected]" }
s.source = { :git => "https://github.com/marketplacer/swift-badge.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/marketplacer/swift-badge/master/graphics/swift_badge_showcase_2.png"
s.source_files = "BadgeSwift/**/*.swift"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.swift_versions = ["4.2", "5.0"]
end