Skip to content

Instantly share code, notes, and snippets.

@HBehrens
Created February 9, 2013 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HBehrens/4744859 to your computer and use it in GitHub Desktop.
Save HBehrens/4744859 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'OCMock'
s.version = '2.0.1.latest'
s.homepage = 'http://ocmock.org'
s.author = { 'Erik Doernenburg' => 'erik@doernenburg.com' }
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