[Add] RongCloudRTC 5.12.0
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 7.0.0 / OCMockito.podspec.json
blob9e0b396692236461c4ece989d3c37759eaa07e63
2   "name": "OCMockito",
3   "version": "7.0.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": {
8     "type": "MIT"
9   },
10   "authors": {
11     "Jon Reid": "jon@qualitycoding.org"
12   },
13   "social_media_url": "https://twitter.com/qcoding",
14   "platforms": {
15     "osx": "10.10",
16     "ios": "12.0",
17     "tvos": "12.0",
18     "watchos": "2.0"
19   },
20   "source": {
21     "git": "https://github.com/jonreid/OCMockito.git",
22     "tag": "v7.0.0"
23   },
24   "source_files": [
25     "Source/OCMockito/**/*.{h,m}",
26     "Source/ThirdParty/**/*.{h,m}"
27   ],
28   "public_header_files": [
29     "Source/OCMockito/Core/MKTNonObjectArgumentMatching.h",
30     "Source/OCMockito/Core/OCMockito.h",
31     "Source/OCMockito/Invocation/NSInvocation+OCMockito.h",
32     "Source/OCMockito/Mocking/MKTBaseMockObject.h",
33     "Source/OCMockito/Mocking/MKTClassObjectMock.h",
34     "Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h",
35     "Source/OCMockito/Mocking/MKTObjectMock.h",
36     "Source/OCMockito/Mocking/MKTProtocolMock.h",
37     "Source/OCMockito/Stubbing/MKTOngoingStubbing.h"
38   ],
39   "requires_arc": true,
40   "dependencies": {
41     "OCHamcrest": [
42       "~> 8.0"
43     ]
44   }