Files
JBChartView/LRResty/0.11.0/LRResty.podspec
T
Francis Chong 8e8a3b6f94 Exclude NSData+Base64 files from LRResty, and make it depends on NSData+Base64 pod
This fixes Pod compiler error when using LRResty and other pods that used NSData+Base64
2012-04-25 17:35:25 +08:00

15 lines
580 B
Ruby

Pod::Spec.new do |s|
s.name = 'LRResty'
s.version = '0.11.0'
s.summary = 'Resty is a simple to use HTTP library for Cocoa and iOS apps, aimed at consuming RESTful web services and APIs.'
s.homepage = 'http://projects.lukeredpath.co.uk/resty/'
s.authors = { 'Luke Redpath' => 'luke@lukeredpath.co.uk' }
s.source = { :git => 'https://github.com/lukeredpath/LRResty.git', :tag => 'v0.11.0' }
files = FileList['Classes/**/*.{h,m}']
files.exclude /NSData\+Base64/
s.source_files = files
s.dependency 'NSData+Base64', '~> 1.0'
end