Skip to content

Commit

Permalink
Updated to version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AliSoftware committed Sep 27, 2013
1 parent 1fbd379 commit 61e5527
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
16 changes: 10 additions & 6 deletions OHHTTPStubs.podspec
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
3 changes: 3 additions & 0 deletions OHHTTPStubsDemo.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 61e5527

Please sign in to comment.