Skip to content

Commit

Permalink
Added compiler flag to suppress ARC-related performSelector warnings …
Browse files Browse the repository at this point in the history
…in tapku
  • Loading branch information
maikg committed Jul 15, 2012
1 parent 0ced031 commit 21700d1
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions TapkuLibrary/2.1/TapkuLibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
Pod::Spec.new do |s|
s.name = 'TapkuLibrary'
s.version = '2.1'
s.platform = :ios
s.author = { 'Devin Ross' => 'devin@devinsheaven.com' }
s.license = { :type => 'MIT', :file => 'License.txt' }
s.homepage = 'http://tapku.com/'
s.summary = 'tap + haiku = tapku, a well crafted open source iOS framework'
s.description = 'TapkuLibrary is an iOS library built on Cocoa and UIKit intended for broad ' \
'use in applications. If you\'re looking to see what the library can do, check ' \
'out the demo project included. Some major components include coverflow, calendar ' \
'grid, network requests and progress indicators.'
s.source = { :git => 'https://github.com/devinross/tapkulibrary.git', :tag => 'v2.1' }
s.requires_arc = true
s.source_files = 'src/TapkuLibrary/*.{h,m}'
s.resources = 'src/TapkuLibrary.bundle'
s.frameworks = 'MapKit', 'QuartzCore'
s.name = 'TapkuLibrary'
s.version = '2.1'
s.platform = :ios
s.author = { 'Devin Ross' => 'devin@devinsheaven.com' }
s.license = { :type => 'MIT', :file => 'License.txt' }
s.homepage = 'http://tapku.com/'
s.summary = 'tap + haiku = tapku, a well crafted open source iOS framework'
s.description = 'TapkuLibrary is an iOS library built on Cocoa and UIKit intended for broad ' \
'use in applications. If you\'re looking to see what the library can do, check ' \
'out the demo project included. Some major components include coverflow, calendar ' \
'grid, network requests and progress indicators.'
s.source = { :git => 'https://github.com/devinross/tapkulibrary.git', :tag => 'v2.1' }
s.requires_arc = true
s.source_files = 'src/TapkuLibrary/*.{h,m}'
s.resources = 'src/TapkuLibrary.bundle'
s.frameworks = 'MapKit', 'QuartzCore'
s.compiler_flags = '-Wno-arc-performSelector-leaks'
end

0 comments on commit 21700d1

Please sign in to comment.