Skip to content

Commit

Permalink
Merge pull request #8503 from swizzlr/oclint
Browse files Browse the repository at this point in the history
Add OCLint-Annotations podspec
  • Loading branch information
keith committed Feb 25, 2014
2 parents a369db2 + b4a7337 commit 7cd4668
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions OCLint-Annotations/1.0.0/OCLint-Annotations.podspec
@@ -0,0 +1,25 @@
Pod::Spec.new do |s|

s.name = "OCLint-Annotations"
s.version = "1.0.0"
s.summary = "Drop in annotations to make OCLint more usable."

s.description = <<-DESC
Used with OCLint, this CocoaPod will intelligently warn you about missing calls to `super` or unimplemented abstract methods in UIKit. You can even annotate your own code, marking methods as protected or prohibited. An easy way to keep everyone using your code on the right track.
Usage: add `#import <OCLint-Annotations/OCLint-Annotations.h>` to your PCH, and in addition `#import <OCLint-Annotations/UIKit+OCLintStaticChecks.h>` on iOS.
DESC

s.homepage = "http://oclint.org"
s.license = { :type => 'Modifed BSD', :file => 'LICENSE' }

s.authors = { "Longyi Qi" => "lqi+git@longyiqi.com", "Akiva Leffert" => "akiva@etsy.com" }

s.ios.deployment_target = '6.0'

s.source = { :git => "https://github.com/swizzlr/oclint-cocoa-additions.git", :tag => "v#{s.version}" }

s.source_files = 'OCLint-Annotations.h'
s.ios.source_files = 'iOS/UIKit+OClintStaticChecks.h'

end

0 comments on commit 7cd4668

Please sign in to comment.