[Add] FCNews 0.3.26
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 1.3.0 / OCMockito.podspec.json
blob9d0d0a623eebefd1a7e85354779daf1b97496fe5
2   "name": "OCMockito",
3   "version": "1.3.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   "social_media_url": "https://twitter.com/qcoding",
12   "platforms": {
13     "ios": "6.0",
14     "osx": "10.8"
15   },
16   "source": {
17     "git": "https://github.com/jonreid/OCMockito.git",
18     "tag": "v1.3.0"
19   },
20   "source_files": [
21     "Source/OCMockito/OCMockito.h",
22     "Source/OCMockito/**/*.{h,m}"
23   ],
24   "public_header_files": [
25     "Source/OCMockito/OCMockito.h",
26     "Source/OCMockito/MKTArgumentCaptor.h",
27     "Source/OCMockito/MKTBaseMockObject.h",
28     "Source/OCMockito/MKTClassObjectMock.h",
29     "Source/OCMockito/MKTObjectMock.h",
30     "Source/OCMockito/MKTObjectAndProtocolMock.h",
31     "Source/OCMockito/MKTProtocolMock.h",
32     "Source/OCMockito/MKTOngoingStubbing.h",
33     "Source/OCMockito/MKTPrimitiveArgumentMatching.h"
34   ],
35   "requires_arc": true,
36   "dependencies": {
37     "OCHamcrest": [
38       "~> 4.0"
39     ],
40     "TPWeakProxy": [
41       "~> 1.0"
42     ]
43   }