forked from devinross/tapkulibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TapkuLibrary.podspec
18 lines (18 loc) · 1012 Bytes
/
TapkuLibrary.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'TapkuLibrary'
s.version = '2.3'
s.platform = :ios
s.author = { 'Devin Ross' => '[email protected]' }
s.license = { :type => 'MIT', :file => 'License.txt' }
s.homepage = 'https://github.com/devinross/tapkulibrary'
s.summary = 'tap + haiku = tapku, a well crafted open source iOS framework'
s.description = 'TapkuLibrary is an iOS library built on Cocoa and UIKit intended for broad ' \
'use in applications. If you\'re looking to see what the library can do, check ' \
'out the demo project included. Some major components include coverflow, calendar ' \
'grid, network requests and progress indicators.'
s.source = { :git => 'https://github.com/devinross/tapkulibrary.git', :tag => 'v2.2' }
s.requires_arc = true
s.source_files = 'src/TapkuLibrary/*.{h,m}'
s.resources = 'src/TapkuLibrary.bundle'
s.frameworks = 'QuartzCore'
end