-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathInkwell.podspec
26 lines (22 loc) · 1.17 KB
/
Inkwell.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 = 'Inkwell'
s.version = '1.2.1'
s.summary = 'An inkwell to use custom fonts on the fly.'
s.description = <<-DESC
In fact, Inkwell takes responsibilities for:
- Downloading fonts from Google Fonts or custom resources.
- Registering custom fonts to the system.
- Loading and using custom fonts dynamically and seamlessly.
All of these are wrapped in friendly, easy to use API.
DESC
s.screenshot = "https://raw.githubusercontent.com/ninjaprox/Inkwell/master/Demo.gif"
s.homepage = 'https://github.com/ninjaprox/Inkwell'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Vinh Nguyen' => '[email protected]' }
s.source = { :git => 'https://github.com/ninjaprox/Inkwell.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ninjaprox'
s.ios.deployment_target = '8.0'
s.source_files = 'Inkwell/Inkwell/**/*.swift'
s.frameworks = 'Foundation', 'CoreText'
s.dependency 'Alamofire', '~> 4.4.0'
end