[Add] FCNews 0.3.26
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 5.1.0 / OCMockito.podspec.json
blob55146993e0127a468f5b47ce985e73885472ca4c
2   "name": "OCMockito",
3   "version": "5.1.0",
4   "summary": "OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.",
5   "description": "OCMockito is an Objective-C implementation of Mockito, supporting creation, \nverification and stubbing of mock objects.\n\nKey differences from other mocking frameworks:\n\n* Mock objects are always \"nice,\" recording their calls instead of \n  throwing exceptions about unspecified invocations. This makes tests less fragile.\n* No expect-run-verify, making tests more readable. Mock objects \n  record their calls, then you verify the methods you want.\n* Verification failures are reported as unit test failures, \n  identifying specific lines instead of throwing exceptions. This makes \n  it easier to identify failures.",
6   "homepage": "https://github.com/jonreid/OCMockito",
7   "license": "MIT",
8   "authors": {
9     "Jon Reid": "jon@qualitycoding.org"
10   },
11   "social_media_url": "https://twitter.com/qcoding",
12   "platforms": {
13     "ios": "8.0",
14     "osx": "10.10",
15     "tvos": "9.0"
16   },
17   "source": {
18     "git": "https://github.com/jonreid/OCMockito.git",
19     "tag": "v5.1.0"
20   },
21   "source_files": [
22     "Source/OCMockito/**/*.{h,m}",
23     "Source/ThirdParty/**/*.{h,m}"
24   ],
25   "public_header_files": [
26     "Source/OCMockito/Core/MKTNonObjectArgumentMatching.h",
27     "Source/OCMockito/Core/OCMockito.h",
28     "Source/OCMockito/Invocation/NSInvocation+OCMockito.h",
29     "Source/OCMockito/Mocking/MKTBaseMockObject.h",
30     "Source/OCMockito/Mocking/MKTClassObjectMock.h",
31     "Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h",
32     "Source/OCMockito/Mocking/MKTObjectMock.h",
33     "Source/OCMockito/Mocking/MKTProtocolMock.h",
34     "Source/OCMockito/Stubbing/MKTOngoingStubbing.h"
35   ],
36   "requires_arc": true,
37   "dependencies": {
38     "OCHamcrest": [
39       "~> 7.0"
40     ]
41   }