-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMaterialDesignCocoa.podspec
26 lines (23 loc) · 1.19 KB
/
MaterialDesignCocoa.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
25
26
Pod::Spec.new do |s|
s.name = "MaterialDesignCocoa"
s.version = "0.0.2"
s.summary = "Material Design UI Components for Cocoa. Material Design is introduced in Google I/O 2014."
s.description = <<-DESC
Material Design UI Components for Cocoa.
Material Design is introduced in Google I/O 2014.
I hope that Google will release material desined UI Components for iOS.
This library includes these components only.
- Card
- UIColor extensions
- UIFont extensions
DESC
s.homepage = "http://github.com/akiroom/"
s.screenshots = "https://raw.githubusercontent.com/akiroom/MaterialDesignCocoa/master/Screenshots/card-and-color.png"
s.license = 'MIT'
s.author = { "Hiroki Akiyama" => "[email protected]" }
s.source = { :git => "https://github.com/akiroom/MaterialDesignCocoa.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/akiroom'
s.requires_arc = true
s.source_files = 'Classes'
s.ios.frameworks = 'UIKit'
end