[Add] FCNews 0.3.26
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 5.1.3 / OCMockito.podspec.json
blob55241db4511d2bd42fac47bf8dd1a34dd8f52d27
2   "name": "OCMockito",
3   "version": "5.1.3",
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     "ios": "8.0",
16     "osx": "10.10",
17     "tvos": "9.0"
18   },
19   "source": {
20     "git": "https://github.com/jonreid/OCMockito.git",
21     "tag": "v5.1.3"
22   },
23   "source_files": [
24     "Source/OCMockito/**/*.{h,m}",
25     "Source/ThirdParty/**/*.{h,m}"
26   ],
27   "public_header_files": [
28     "Source/OCMockito/Core/MKTNonObjectArgumentMatching.h",
29     "Source/OCMockito/Core/OCMockito.h",
30     "Source/OCMockito/Invocation/NSInvocation+OCMockito.h",
31     "Source/OCMockito/Mocking/MKTBaseMockObject.h",
32     "Source/OCMockito/Mocking/MKTClassObjectMock.h",
33     "Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h",
34     "Source/OCMockito/Mocking/MKTObjectMock.h",
35     "Source/OCMockito/Mocking/MKTProtocolMock.h",
36     "Source/OCMockito/Stubbing/MKTOngoingStubbing.h"
37   ],
38   "requires_arc": true,
39   "dependencies": {
40     "OCHamcrest": [
41       "~> 7.0"
42     ]
43   }