forked from alexisakers/BulletinBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BulletinBoard.podspec
22 lines (22 loc) · 1.22 KB
/
BulletinBoard.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "BulletinBoard"
s.version = "4.1.1"
s.summary = "Generate and Display Bottom Card Interfaces for iOS"
s.description = <<-DESC
BulletinBoard is an iOS library that generates and manages contextual cards displayed at the bottom of the screen. It is especially well suited for quick user interactions such as onboarding screens or configuration.
It has an interface similar to the cards displayed by iOS for AirPods, Apple TV configuration and NFC tag scanning.
It has built-in support for accessibility features such as VoiceOver and Switch Control.
DESC
s.homepage = "https://github.com/alexaubry/BulletinBoard"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexis Aubry" => "[email protected]" }
s.social_media_url = "https://twitter.com/_alexaubry"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/alexaubry/BulletinBoard.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.private_header_files = "Sources/Support/**/*.h"
s.frameworks = "UIKit"
s.documentation_url = "https://alexaubry.github.io/BulletinBoard"
s.module_name = "BLTNBoard"
s.swift_version = "5.0"
end