[Add] RongCloudRTC 5.12.0
[CocoaPods.git] / Specs / 8 / e / b / OCMockito / 0.22 / OCMockito.podspec.json
blob8f7b6281cbea4b26739b6d805d74b9d46ec9a73d
2   "name": "OCMockito",
3   "version": "0.22",
4   "summary": "OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.",
5   "description": "\n      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. (It also keeps the pre-iOS 5 Simulator from crashing.)\n  ",
6   "homepage": "https://github.com/jonreid/OCMockito",
7   "license": "BSD",
8   "authors": {
9     "Jon Reid": "jon@qualitycoding.org"
10   },
11   "source": {
12     "git": "https://github.com/jonreid/OCMockito.git",
13     "tag": "V0.22"
14   },
15   "source_files": [
16     "Source/OCMockito/OCMockito.h",
17     "Source/OCMockito/**/*.{h,m,mm}"
18   ],
19   "preserve_paths": [
20     "Examples",
21     "Documentation",
22     "Source/Tests",
23     "Source/TestSupport"
24   ],
25   "ios": {
26     "libraries": "stdc++"
27   },
28   "dependencies": {
29     "OCHamcrest": [
30       "~> 1.7"
31     ]
32   },
33   "requires_arc": false