Skip to content

Commit

Permalink
Merge pull request #25 from lloydsheng/master
Browse files Browse the repository at this point in the history
Add pod spec file and fix xcode 5.1 warning
  • Loading branch information
tomsoft1 committed Feb 27, 2015
2 parents b12dd3b + 1849249 commit 3638312
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/UIImage+StackBlur.m
Expand Up @@ -316,7 +316,7 @@ - (UIImage *) normalize {
height,
8, (4 * width),
genericColorSpace,
kCGImageAlphaPremultipliedLast);
kCGBitmapAlphaInfoMask);
CGColorSpaceRelease(genericColorSpace);
CGContextSetInterpolationQuality(thumbBitmapCtxt, kCGInterpolationDefault);
CGRect destRect = CGRectMake(0, 0, width, height);
Expand Down
13 changes: 13 additions & 0 deletions StackBluriOS.podspec
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = 'StackBluriOS'
s.version = '0.0.2'
s.platform = :ios
s.license = 'BSD'
s.summary = 'Stack Blur implementation for iOS.'
s.homepage = 'https://github.com/tomsoft1/StackBluriOS'
s.author = { 'Thomas Landspurg' => 'thomas.landspurg@gmail.com' }
s.source = { :git => 'https://github.com/tomsoft1/StackBluriOS.git', :commit => 'b12dd3ba2eedc089cf2b518e693b0beea78e6806' }

s.source_files = 'Classes/UIImage+StackBlur.*'
s.requires_arc = true
end

0 comments on commit 3638312

Please sign in to comment.