Created
February 9, 2013 10:57
-
-
Save HBehrens/4744859 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'OCMock' | |
s.version = '2.0.1.latest' | |
s.homepage = 'http://ocmock.org' | |
s.author = { 'Erik Doernenburg' => '[email protected]' } | |
s.source = { :git => 'https://github.com/erikdoe/ocmock.git', | |
:commit => '1f7a26aa3212f29d9fd7c19882c16198b421aee1' } | |
s.summary = 'OCMock is an Objective-C implementation of mock objects.' | |
s.description = 'This implementation fully utilises the dynamic nature of Objective-C. It creates mock objects on the fly and uses the trampoline pattern so that you can define expectations and stubs using the same syntax that you use to call methods. No strings, no @selector, just method invocations.' | |
s.source_files = 'Source/OCMock/*.[mh]' | |
s.license = 'https://github.com/erikdoe/ocmock/blob/master/Source/License.txt' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment