[Add] RongCloudRTC 5.12.0
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 1.2.0 / OCMockito.podspec.json
bloba901439e2d0683d5e0c358f0c568472c70aeb269
2   "name": "OCMockito",
3   "version": "1.2.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, \n                    verification and stubbing of mock objects.\n\n                    Key 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.\n",
6   "homepage": "https://github.com/jonreid/OCMockito",
7   "license": "MIT",
8   "authors": {
9     "Jon Reid": "jon@qualitycoding.org"
10   },
11   "platforms": {
12     "ios": "5.0",
13     "osx": "10.7"
14   },
15   "source": {
16     "git": "https://github.com/jonreid/OCMockito.git",
17     "tag": "v1.2.0"
18   },
19   "source_files": [
20     "Source/OCMockito/OCMockito.h",
21     "Source/OCMockito/**/*.{h,m}"
22   ],
23   "public_header_files": [
24     "Source/OCMockito/OCMockito.h",
25     "Source/OCMockito/MKTArgumentCaptor.h",
26     "Source/OCMockito/MKTBaseMockObject.h",
27     "Source/OCMockito/MKTClassObjectMock.h",
28     "Source/OCMockito/MKTObjectMock.h",
29     "Source/OCMockito/MKTObjectAndProtocolMock.h",
30     "Source/OCMockito/MKTProtocolMock.h",
31     "Source/OCMockito/MKTOngoingStubbing.h",
32     "Source/OCMockito/MKTPrimitiveArgumentMatching.h"
33   ],
34   "requires_arc": true,
35   "dependencies": {
36     "OCHamcrest": [
37       "~> 3.0"
38     ]
39   }