-
Notifications
You must be signed in to change notification settings - Fork 25
/
AMViralSwitch.podspec
20 lines (19 loc) · 1001 Bytes
/
AMViralSwitch.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "AMViralSwitch"
s.version = "1.0.1"
s.summary = "Dropin replacement of UISwitch that 'infects' the parent view with the onTintColor when the switch is turned on."
s.description = <<-DESC
A UISwitch drop-in replacement that 'infects' the parent view
with the active tint color when the switch is turned on, with
a radial spread.
The switch can also change the color of the parent's subviews.
DESC
s.homepage = "https://github.com/andreamazz/ViralSwitch"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Andrea Mazzini" => "andrea.mazzini@gmail.com" }
s.source = { :git => "https://github.com/andreamazz/ViralSwitch.git", :tag => s.version }
s.platform = :ios, '7.0'
s.source_files = 'Source', '*.{h,m}'
s.requires_arc = true
s.social_media_url = 'https://twitter.com/theandreamazz'
end