Commit 7134b612 authored by Eloy Durán's avatar Eloy Durán

Document Podfile#inhibit_all_warnings!

parent 3b900e68
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
- Don’t impose a certain structure of the user’s project by raising if no ‘Frameworks’ group exists. [#431](https://github.com/CocoaPods/CocoaPods/pull/431) - Don’t impose a certain structure of the user’s project by raising if no ‘Frameworks’ group exists. [#431](https://github.com/CocoaPods/CocoaPods/pull/431)
- Support for GitHub Gists in the linter. - Support for GitHub Gists in the linter.
- Allow to specify ARC settings in subspecs. - Allow to specify ARC settings in subspecs.
- Add Podfile#inhibit_all_warnings! which will inhibit all warnings from the Pods library. [#209](https://github.com/CocoaPods/CocoaPods/issues/209)
## 0.11.1 ## 0.11.1
......
...@@ -289,6 +289,9 @@ module Pod ...@@ -289,6 +289,9 @@ module Pod
@target_definition.link_with = targets @target_definition.link_with = targets
end end
# Inhibits **all** warnings from the Pods library.
#
# When used, this is applied to all targets inheriting from the current one.
def inhibit_all_warnings! def inhibit_all_warnings!
@target_definition.inhibit_all_warnings = true @target_definition.inhibit_all_warnings = true
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment