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 @@
* Corrected improper configuration of the PODS_ROOT xcconfig variable in
non-integrating installations.
[#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
......
......@@ -3,7 +3,7 @@
if ENV['CI'] || ENV['GENERATE_COVERAGE']
require 'simplecov'
require 'coveralls'
# require 'coveralls'
if ENV['CI']
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
......
......@@ -103,7 +103,7 @@ module Pod
it "locks the version of the dependencies which did not change in the Podfile" do
@analyzer.analyze
@analyzer.send(:locked_dependencies).map(&:to_s).should == ["SVPullToRefresh"]
@analyzer.send(:locked_dependencies).map(&:to_s).should == ["SVPullToRefresh (= 0.4)"]
end
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