-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fbd379
commit 61e5527
Showing
2 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,31 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "OHHTTPStubs" | ||
s.version = "2.2.1" | ||
s.version = "2.3.0" | ||
|
||
s.summary = "Stubbing framework for network requests." | ||
s.description = <<-DESC | ||
A class to stub network requests easily: | ||
* Test your apps with fake network data (stubbed from file) | ||
* Use customized stubs depending on the requests | ||
* Use custom response time to simulate slow network. | ||
> **WARNING**: Don't forget to remove stubs before submitting to the AppStore! | ||
> You should use `OHHTTPStubs` only for your Unit Test targets or while in development | ||
> (for example between `#ifdef DEBUG`/`#endif`). | ||
DESC | ||
|
||
s.homepage = "https://github.com/AliSoftware/OHHTTPStubs" | ||
s.license = "MIT" | ||
s.authors = { 'Olivier Halligon' => '[email protected]' } | ||
|
||
|
||
|
||
s.source = { :git => "https://github.com/AliSoftware/OHHTTPStubs.git", :tag => s.version.to_s } | ||
s.source_files = "OHHTTPStubs" | ||
|
||
s.source_files = "OHHTTPStubs/*.{h,m}" | ||
s.public_header_files = "OHHTTPStubs/*.h" | ||
|
||
s.frameworks = 'Foundation', 'CFNetwork' | ||
|
||
s.requires_arc = true | ||
s.ios.deployment_target = '5.0' | ||
s.osx.deployment_target = '10.7' | ||
|
||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.