-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNHSeeThroughView.podspec
More file actions
21 lines (19 loc) · 1001 Bytes
/
NHSeeThroughView.podspec
File metadata and controls
21 lines (19 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "NHSeeThroughView"
s.version = "0.1.1"
s.summary = "A set of classes to make see-through views on iOS."
s.description = <<-DESC
NHSeeThroughView is a set of classes to make see-through views on iOS.
(views that let see content behind them with a shape carved out).
A generic category on UIVIew is provided to achieve this effect on any view.
A UIButton subclass is also provided as an easy way to get the same look directly form Interface Builder.
DESC
s.homepage = "http://github.com/nilsou/NHSeeThroughView"
s.license = 'MIT'
s.author = { "Nils Hayat" => "nilsou@gmail.com" }
s.source = { :git => "https://github.com/nilsou/NHSeeThroughView.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes/ios/*.{h,m}'
end