Add spec & changelog

parent c42e41ac
...@@ -17,7 +17,6 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -17,7 +17,6 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Marcelo Fabri](https://github.com/marcelofabri) [Marcelo Fabri](https://github.com/marcelofabri)
[#4487](https://github.com/CocoaPods/CocoaPods/pull/4487) [#4487](https://github.com/CocoaPods/CocoaPods/pull/4487)
* Improve `pod search` performance while using _`--full`_ flag
* Improve sorting algorithm for `pod search`. * Improve sorting algorithm for `pod search`.
[Muhammed Yavuz Nuzumlalı](https://github.com/manuyavuz) [Muhammed Yavuz Nuzumlalı](https://github.com/manuyavuz)
[cocoapods-search#12](https://github.com/CocoaPods/cocoapods-search/issues/12) [cocoapods-search#12](https://github.com/CocoaPods/cocoapods-search/issues/12)
...@@ -76,6 +75,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -76,6 +75,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
##### Bug Fixes ##### Bug Fixes
* Prevent installer to be run from inside sandbox directory.
[Muhammed Yavuz Nuzumlalı](https://github.com/manuyavuz)
* Improve repo lint error message when no repo found with given name. * Improve repo lint error message when no repo found with given name.
[Muhammed Yavuz Nuzumlalı](https://github.com/manuyavuz) [Muhammed Yavuz Nuzumlalı](https://github.com/manuyavuz)
[#4142](https://github.com/CocoaPods/CocoaPods/issues/4142) [#4142](https://github.com/CocoaPods/CocoaPods/issues/4142)
......
...@@ -165,6 +165,14 @@ module Pod ...@@ -165,6 +165,14 @@ module Pod
UI.warnings.should.include 'deprecated in favor of AFNetworking' UI.warnings.should.include 'deprecated in favor of AFNetworking'
UI.warnings.should.include 'BlocksKit has been deprecated' UI.warnings.should.include 'BlocksKit has been deprecated'
end end
it 'raises if command is run inside sandbox directory' do
Dir.chdir(@installer.sandbox.root) do
should.raise Informative do
@installer.install!
end.message.should.match %r{should.*run.*outside.*Pods directory.*Current directory.*/Pods}m
end
end
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