mirror of
https://github.com/zhigang1992/CocoaPods.git
synced 2026-01-12 22:46:25 +08:00
11 lines
298 B
Ruby
11 lines
298 B
Ruby
Pod::Spec.new do
|
|
name 'TestLib'
|
|
version '1.0'
|
|
summary 'A spec of a lib, to test that it too can be used to develop the lib.'
|
|
source :git => 'http://example.local/test.git', :tag => 'v1.0'
|
|
|
|
dependency 'SSZipArchive', '> 0.1'
|
|
dependency 'JSONKit'
|
|
dependency 'ASIHTTPRequest', '1.8'
|
|
end
|