forked from aporat/three20lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThree20Lite.podspec
More file actions
18 lines (17 loc) · 971 Bytes
/
Three20Lite.podspec
File metadata and controls
18 lines (17 loc) · 971 Bytes
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 = 'Three20Lite'
s.version = '2.1.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Lite edition of Three20, a collection of iPhone UI classes.'
s.description = 'Three20 is a collection of iPhone UI classes, like a photo viewer, and general utilities,' \
'like an HTTP disk cache. This is a lite edition of Three20, which contains some important' \
'changes compared to the original Three20 project. See project homepage for more details.'
s.homepage = 'https://github.com/aporat/three20lite'
s.author = { 'Joe Hewitt' => 'http://github.com/joehewitt' }
s.source = { :git => 'https://github.com/aporat/three20lite.git' }
s.platform = :ios
s.source_files = 'src/*.{h,m}', 'src/{Core,Network,Navigator,UI,Style}/*.{h,m}'
s.resources = "src/Three20.bundle"
s.frameworks = 'QuartzCore'
s.dependency 'SBJson'
end