Commit b9c37bc7 authored by Fabio Pelosin's avatar Fabio Pelosin

[Specs] Fix for improved support for pre-release versions

parent b0184ad7
...@@ -12,6 +12,9 @@ ...@@ -12,6 +12,9 @@
* Corrected improper configuration of the PODS_ROOT xcconfig variable in * Corrected improper configuration of the PODS_ROOT xcconfig variable in
non-integrating installations. non-integrating installations.
[#918](https://github.com/CocoaPods/CocoaPods/issues/918) [#918](https://github.com/CocoaPods/CocoaPods/issues/918)
* Improved support for pre-release versions using dashes.
[#935](https://github.com/CocoaPods/CocoaPods/issues/935)
###### Ancillary enhancements ###### Ancillary enhancements
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
if ENV['CI'] || ENV['GENERATE_COVERAGE'] if ENV['CI'] || ENV['GENERATE_COVERAGE']
require 'simplecov' require 'simplecov'
require 'coveralls' # require 'coveralls'
if ENV['CI'] if ENV['CI']
SimpleCov.formatter = Coveralls::SimpleCov::Formatter SimpleCov.formatter = Coveralls::SimpleCov::Formatter
......
...@@ -103,7 +103,7 @@ module Pod ...@@ -103,7 +103,7 @@ module Pod
it "locks the version of the dependencies which did not change in the Podfile" do it "locks the version of the dependencies which did not change in the Podfile" do
@analyzer.analyze @analyzer.analyze
@analyzer.send(:locked_dependencies).map(&:to_s).should == ["SVPullToRefresh"] @analyzer.send(:locked_dependencies).map(&:to_s).should == ["SVPullToRefresh (= 0.4)"]
end end
it "does not lock the dependencies in update mode" do it "does not lock the dependencies in update mode" do
......
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