-
Notifications
You must be signed in to change notification settings - Fork 601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use CocoPods instead of git-submodules for linking with AFNetworking in Unit Tests #90
Changes from all commits
5ea1f3e
091ad2d
ddf1030
598dd3c
da1f98b
b3196d8
7a1e8f4
9b74c85
f79b8a1
4578df0
c96f04e
11c2f62
0d03d6f
faeb13b
a1476ba
892d8e4
3b50a70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,7 @@ profile | |
*.moved-aside | ||
.DS_Store | ||
*.xccheckout | ||
# CocoaPods | ||
Podfile.local | ||
*.xcworkspace | ||
!default.xcworkspace |
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
xcodeproj 'OHHTTPStubsDemo.xcodeproj' | ||
platform :ios, '6.0' | ||
|
||
pod 'OHHTTPStubs', :path => '../' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
PODS: | ||
- OHHTTPStubs (3.1.10): | ||
- OHHTTPStubs/Core (= 3.1.10) | ||
- OHHTTPStubs/Core (3.1.10) | ||
|
||
DEPENDENCIES: | ||
- OHHTTPStubs (from `../`) | ||
|
||
EXTERNAL SOURCES: | ||
OHHTTPStubs: | ||
:path: ../ | ||
|
||
SPEC CHECKSUMS: | ||
OHHTTPStubs: 00152a63400246fcbc4b772a2a547ea34c97cbd6 | ||
|
||
COCOAPODS: 0.36.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this change have other consequences, like raising the minimum iOS version for Carthage users (as Carthage use the settings in the Xcode project building the lib) — even if that's not big a deal as Carthage requires dynamic frameworks so every project using Carthage is probably iOS8+, but just wondering if it may have other side effects.
Note that I won't mind raising the minimum requirement to 6.0 (everything under 5.0 is quite dead anyway those days), but in that case be sure not to forget to bump the pod version up to the next major version to be semver-compliant.