Skip to content

Commit 61e5527

Browse files
committed
Updated to version 2.3.0
1 parent 1fbd379 commit 61e5527

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

OHHTTPStubs.podspec

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
Pod::Spec.new do |s|
2+
23
s.name = "OHHTTPStubs"
3-
s.version = "2.2.1"
4+
s.version = "2.3.0"
5+
46
s.summary = "Stubbing framework for network requests."
57
s.description = <<-DESC
68
A class to stub network requests easily:
79
* Test your apps with fake network data (stubbed from file)
810
* Use customized stubs depending on the requests
911
* Use custom response time to simulate slow network.
10-
11-
> **WARNING**: Don't forget to remove stubs before submitting to the AppStore!
12-
> You should use `OHHTTPStubs` only for your Unit Test targets or while in development
13-
> (for example between `#ifdef DEBUG`/`#endif`).
1412
DESC
13+
1514
s.homepage = "https://github.com/AliSoftware/OHHTTPStubs"
1615
s.license = "MIT"
1716
s.authors = { 'Olivier Halligon' => 'olivier.halligon+ae@gmail.com' }
1817

18+
19+
1920
s.source = { :git => "https://github.com/AliSoftware/OHHTTPStubs.git", :tag => s.version.to_s }
20-
s.source_files = "OHHTTPStubs"
21+
22+
s.source_files = "OHHTTPStubs/*.{h,m}"
2123
s.public_header_files = "OHHTTPStubs/*.h"
24+
2225
s.frameworks = 'Foundation', 'CFNetwork'
2326

2427
s.requires_arc = true
2528
s.ios.deployment_target = '5.0'
2629
s.osx.deployment_target = '10.7'
30+
2731
end

OHHTTPStubsDemo.xcworkspace/contents.xcworkspacedata

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)