|
1 | 1 | Pod::Spec.new do |s|
|
2 |
| - s.name = "OCMock" |
3 |
| - s.version = "3.8" |
4 |
| - |
5 |
| - s.summary = "Mock objects for Objective-C" |
6 |
| - s.description = <<-DESC |
| 2 | + s.name = "OCMock" |
| 3 | + s.version = "3.8.1" |
| 4 | + |
| 5 | + s.summary = "Mock objects for Objective-C" |
| 6 | + s.description = <<-DESC |
7 | 7 | OCMock is an Objective-C implementation of mock objects. It provides
|
8 | 8 | stubs that return pre-determined values for specific method invocations,
|
9 | 9 | dynamic mocks that can be used to verify interaction patterns, and
|
10 | 10 | partial mocks to overwrite selected methods of existing objects.
|
11 | 11 | DESC
|
12 |
| - |
13 |
| - s.homepage = "http://ocmock.org" |
14 |
| - s.documentation_url = "http://ocmock.org/reference/" |
15 |
| - s.license = { :type => "Apache 2.0", :file => "License.txt" } |
16 | 12 |
|
17 |
| - s.author = { "Erik Doernenburg" => "erik@doernenburg.com" } |
18 |
| - s.social_media_url = "http://twitter.com/erikdoe" |
19 |
| - |
20 |
| - s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.8" } |
21 |
| - s.source_files = "Source/OCMock/*.{h,m}" |
| 13 | + s.homepage = "http://ocmock.org" |
| 14 | + s.documentation_url = "http://ocmock.org/reference/" |
| 15 | + s.license = { :type => "Apache 2.0", :file => "License.txt" } |
| 16 | + |
| 17 | + s.author = { "Erik Doernenburg" => "erik@doernenburg.com" } |
| 18 | + s.social_media_url = "http://twitter.com/erikdoe" |
22 | 19 |
|
23 |
| - s.requires_arc = false |
24 |
| - s.ios.deployment_target = '9.0' |
25 |
| - s.osx.deployment_target = '10.10' |
26 |
| - s.tvos.deployment_target = '9.0' |
| 20 | + s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.8.1" } |
| 21 | + s.source_files = "Source/OCMock/*.{h,m}" |
| 22 | + |
| 23 | + s.requires_arc = false |
| 24 | + s.osx.deployment_target = '10.10' |
| 25 | + s.ios.deployment_target = '9.0' |
| 26 | + s.tvos.deployment_target = '9.0' |
27 | 27 | s.watchos.deployment_target = '4.0'
|
28 |
| - s.ios.framework = 'XCTest' |
29 |
| - s.osx.framework = 'XCTest' |
30 |
| - s.tvos.framework = 'XCTest' |
31 |
| - s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h", |
32 |
| - "OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h", |
33 |
| - "OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h", |
34 |
| - "OCMFunctions.h", "OCMVerifier.h", "OCMQuantifier.h", |
35 |
| - "OCMockMacros.h" ] |
36 |
| - .map { |file| "Source/OCMock/" + file } |
37 |
| - |
| 28 | + s.osx.framework = 'XCTest' |
| 29 | + s.ios.framework = 'XCTest' |
| 30 | + s.tvos.framework = 'XCTest' |
| 31 | + |
| 32 | + s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h", |
| 33 | + "OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h", |
| 34 | + "OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h", |
| 35 | + "OCMFunctions.h", "OCMVerifier.h", "OCMQuantifier.h", |
| 36 | + "OCMockMacros.h" |
| 37 | + ] |
| 38 | + .map { |file| "Source/OCMock/" + file } |
38 | 39 | end
|
0 commit comments