forked from mrackwitz/MRProgress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMRProgress.podspec
More file actions
15 lines (15 loc) · 809 Bytes
/
Copy pathMRProgress.podspec
File metadata and controls
15 lines (15 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'MRProgress'
s.version = '0.3.1'
s.summary = 'Collection of iOS drop-in components to visualize progress with different modes'
s.homepage = 'https://github.com/mrackwitz/MRProgress'
s.social_media_url = 'https://twitter.com/mrackwitz'
s.author = { 'Marius Rackwitz' => 'git@mariusrackwitz.de' }
s.license = 'MIT License'
s.source = { :git => 'https://github.com/mrackwitz/MRProgress.git', :tag => s.version.to_s }
s.source_files = 'src/**/*.{h,m}'
s.prefix_header_file = 'src/MRProgress.h'
s.platform = :ios, '7.0'
s.requires_arc = true
s.ios.frameworks = %w{UIKit QuartzCore CoreGraphics Accelerate}
end