Skip to content

Commit

Permalink
Add MTRecursiveKVC podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGabriel committed Jan 16, 2013
1 parent fa0c6eb commit 29db38b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions MTRecursiveKVC/1.0.0/MTRecursiveKVC.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# Be sure to run `pod spec lint MTRecursiveKVC.podspec' to ensure this is a
# valid spec.
#
# Remove all comments before submitting the spec. Optional attributes are commented.
#
# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format
#
Pod::Spec.new do |s|
s.name = "MTRecursiveKVC"
s.version = "1.0.0"
s.summary = "A small category on `NSObject` that adds support for recursive lookup using `valueForKey:`."
s.homepage = "https://github.com/MaxGabriel/MTRecursiveKVC"
s.license = 'MIT'
s.author = { "Maximilian Tagher" => "feedback.tagher@gmail.com" }
s.source = { :git => "https://github.com/MaxGabriel/MTRecursiveKVC.git", :tag => "1.0.0" }
s.ios.deployment_target = '4.3'
s.osx.deployment_target = '10.7'

# A list of file patterns which select the source files that should be
# added to the Pods project. If the pattern is a directory then the
# path will automatically have '*.{h,m,mm,c,cpp}' appended.
#
# Alternatively, you can use the FileList class for even more control
# over the selected files.
# (See http://rake.rubyforge.org/classes/Rake/FileList.html.)
#
# s.source_files = 'Classes', 'Classes/**/*.{h,m}'

s.source_files = 'MTRecursiveKVC/*+*.{h,m}'

s.requires_arc = true
end

0 comments on commit 29db38b

Please sign in to comment.