-
Notifications
You must be signed in to change notification settings - Fork 10
/
TAOverlayView.podspec
22 lines (15 loc) · 1.01 KB
/
TAOverlayView.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 = "TAOverlayView"
s.version = "3.0.0"
s.summary = "Creates a semi-transparent overlay with holes to see and interact with views behind the overlay. Useful for walkthrough tutorials."
s.description = <<-DESC
This library was created to implement engaging overlay walkthrough tutorials that highlight portions of the screen with "holes" through the overlay. The holes can be rectangular or circular, and users can tap through the holes. There can be multiple holes in a single overlay, and these holes can be added to the overlay after instantiation.
DESC
s.homepage = "https://github.com/TobogganApps/TAOverlayView"
s.license = 'Apache 2.0'
s.author = { "Nick Yap" => "[email protected]" }
s.source = { :git => "https://github.com/TobogganApps/TAOverlayView.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end