File tree 2 files changed +16
-1
lines changed
lib/cocoapods-core/podfile
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 5
5
##### Enhancements
6
6
7
7
* Allow specifying multiple subspec pod dependencies inline in the Podfile,
8
- via ` pod 'Pod', subspecs: ['Subspec1', 'Subspec2'] ` .
8
+ via ` pod 'Pod', :subspecs => ['Subspec1', 'Subspec2'] ` .
9
9
[ Samuel Giddins] ( https://github.com/segiddins )
10
10
[ #221 ] ( https://github.com/CocoaPods/Core/issues/221 )
11
11
Original file line number Diff line number Diff line change @@ -112,6 +112,21 @@ module DSL
112
112
#
113
113
# ------
114
114
#
115
+ # ### Subspecs
116
+ #
117
+ # When installing a Pod via it's name, it will install all of the
118
+ # default subspecs defined in the podspec.
119
+ #
120
+ # You may install a specific subspec using the following:
121
+ #
122
+ # pod 'QueryKit/Attribute'
123
+ #
124
+ # You may specify a collection of subspecs to be installed as follows:
125
+ #
126
+ # pod 'QueryKit', :subspecs => ['Attribute', 'QuerySet']
127
+ #
128
+ # ------
129
+ #
115
130
# Dependencies can be obtained also from external sources.
116
131
#
117
132
#
You can’t perform that action at this time.
0 commit comments