19 lines
607 B
Ruby
19 lines
607 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'MWPhotoBrowser'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'A simple iOS photo browser.'
|
|
s.homepage = 'https://github.com/mwaterfall/MWPhotoBrowser'
|
|
s.author = { 'Michael Waterfall' => 'mw@d3i.com' }
|
|
s.source = { :git => 'https://github.com/mwaterfall/MWPhotoBrowser.git', :commit => 'aa4fd901ccc164f11749773bcff60672dd2669cf' }
|
|
s.platform = :ios
|
|
|
|
s.source_files = 'MWPhotoBrowser/Classes'
|
|
s.resources = "MWPhotoBrowser/MWPhotoBrowser.bundle"
|
|
|
|
s.framework = 'MessageUI'
|
|
|
|
s.dependency 'SDWebImage'
|
|
s.dependency 'MBProgressHUD'
|
|
end
|