Commit 6e81540b authored by Eloy Durán's avatar Eloy Durán

[CHANGELOG] Add entry about namespacing subspecs in Pods.xcodeproj

parent e6505274
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
- Support for GitHub Gists in the linter. - Support for GitHub Gists in the linter.
- Allow specifying ARC settings in subspecs. - Allow specifying 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) - Add Podfile#inhibit_all_warnings! which will inhibit all warnings from the Pods library. [#209](https://github.com/CocoaPods/CocoaPods/issues/209)
- Make the Pods Xcode project prettier by namespacing subspecs in nested groups. [#466](https://github.com/CocoaPods/CocoaPods/pull/466)
## 0.11.1 ## 0.11.1
......
...@@ -22,7 +22,7 @@ describe 'Pod::Project' do ...@@ -22,7 +22,7 @@ describe 'Pod::Project' do
}).should.not == nil }).should.not == nil
end end
it "namespaces subspecs in groups" do it "namespaces subspecs in groups" do
group = @project.add_spec_group('JSONKit/Subspec') group = @project.add_spec_group('JSONKit/Subspec')
@project.pods.groups.find { |g| g.name == 'JSONKit' }.child_references.should.include group.uuid @project.pods.groups.find { |g| g.name == 'JSONKit' }.child_references.should.include group.uuid
find_object({ find_object({
......
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