-
Notifications
You must be signed in to change notification settings - Fork 305
/
BulletinBoard.podspec
22 lines (22 loc) · 1.23 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 = "5.0.0-rc.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 = "11.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://alexisakers.github.io/BulletinBoard"
s.module_name = "BLTNBoard"
s.swift_version = "5.0"
end