Skip to content

Instantly share code, notes, and snippets.

@alyssais
Created April 10, 2014 17:03
Show Gist options
  • Save alyssais/10402517 to your computer and use it in GitHub Desktop.
Save alyssais/10402517 to your computer and use it in GitHub Desktop.
A podspec for IIIAsync
Pod::Spec.new do |spec|
spec.name = 'IIIAsync'
spec.version = '0.2.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/stevestreza/IIIAsync'
spec.authors = { 'Steve Streza' => '[email protected]' }
spec.summary = 'Concurrency control flow system for Objective-C'
spec.source = { :git => 'https://github.com/stevestreza/IIIAsync.git', :commit => '4e403e1a27542b7fa5defd49416d30930eb3b540' }
spec.source_files = 'IIIAsync/IIIAsync.{h,m}'
spec.requires_arc = true
end
@jhurliman
Copy link

I had to add the line spec.platform = :ios, '6.0' to get the library to compile. Otherwise dispatch_queue_t will not support ARC and the "retain" property attribute will throw a compile error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment