forked from antiraum/THPinViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
THPinViewController.podspec
24 lines (24 loc) · 1.43 KB
/
THPinViewController.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 |s|
s.name = "THPinViewController"
s.version = "1.2.6"
s.summary = "iOS 7 Style PIN Screen for iPhone and iPad"
s.description = <<-DESC
* Has iPhone portrait and iPad portrait and landscape layouts
* Supports variable PIN lengths
* Buttons can show numbers and letters or only numbers
* Background and tint colors as well as text and color of the prompt can be customized
* Supports solid color and translucent/blurred background
DESC
s.homepage = 'https://github.com/antiraum/THPinViewController'
s.license = 'MIT'
s.author = { "Thomas Heß" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/antiraum/THPinViewController.git", :tag => "1.2.6" }
s.source_files = 'THPinViewController/*.{h,m}'
s.resources = 'THPinViewController/*.bundle'
s.requires_arc = true
s.screenshots = [ "https://raw.githubusercontent.com/antiraum/THPinViewController/master/THPinViewController_iphone_4inch.png",
"https://raw.githubusercontent.com/antiraum/THPinViewController/master/THPinViewController_iphone_3-5inch.png",
"https://raw.githubusercontent.com/antiraum/THPinViewController/master/THPinViewController_ipad.png",
"https://raw.githubusercontent.com/antiraum/THPinViewController/master/THPinViewController_translucent_background.png" ]
end