forked from JunichiT/JTMaterialSwitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJTMaterialSwitch.podspec
More file actions
28 lines (22 loc) · 1.17 KB
/
JTMaterialSwitch.podspec
File metadata and controls
28 lines (22 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Podspec JTMaterialSwitch
Pod::Spec.new do |s|
s.name = "JTMaterialSwitch"
s.version = "1.1"
s.summary = "A customizable switch UI inspired from Google's Material Design."
s.description = <<-DESC
`JTMaterialSwitch` is google's material design like switch UI with animation features.
This library has cool and sophisticated animations, ripple effect and bounce effect. Also, customizable properties can be tweaked behaviors and enhance your application UI cool.
With this library, you can easily implement material design switch to your app.
DESC
s.homepage = "https://github.com/JunichiT/JTMaterialSwitch"
s.screenshots = "https://raw.githubusercontent.com/JunichiT/JTMaterialSwitch/master/Docs/switches.gif"
s.license = 'MIT'
s.author = { "Junichi Tsurukawa" => "j.tsurukawa@gmail.com" }
s.source = { :git => "https://github.com/JunichiT/JTMaterialSwitch.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'JTMaterialSwitch' => ['Pod/Assets/*.png']
}
end