Commit 968a6d04 authored by Eloy Duran's avatar Eloy Duran

Bump version to 0.6.0

parent fbad005f
...@@ -8,7 +8,7 @@ GIT ...@@ -8,7 +8,7 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
cocoapods (0.6.0.rc5) cocoapods (0.6.0)
colored (~> 1.2) colored (~> 1.2)
escape (~> 0.0.4) escape (~> 0.0.4)
faraday (~> 0.8.1) faraday (~> 0.8.1)
......
module Pod module Pod
VERSION = '0.6.0.rc5' VERSION = '0.6.0'
class PlainInformative < StandardError class PlainInformative < StandardError
end end
......
Subproject commit 7e76f3d2314fe5ce1948d7ce7ac0232748587d8a Subproject commit bd787fdfb4e53132cafd74e9ff40936377a542c7
...@@ -17,13 +17,14 @@ describe "Pod::Resolver" do ...@@ -17,13 +17,14 @@ describe "Pod::Resolver" do
@resolver.cached_sets.values.sort_by(&:name).should == [ @resolver.cached_sets.values.sort_by(&:name).should == [
Pod::Spec::Set.new(config.repos_dir + 'master/A2DynamicDelegate'), Pod::Spec::Set.new(config.repos_dir + 'master/A2DynamicDelegate'),
Pod::Spec::Set.new(config.repos_dir + 'master/BlocksKit'), Pod::Spec::Set.new(config.repos_dir + 'master/BlocksKit'),
Pod::Spec::Set.new(config.repos_dir + 'master/libffi'),
].sort_by(&:name) ].sort_by(&:name)
end end
it "returns all specs needed for the dependency" do it "returns all specs needed for the dependency" do
specs = @resolver.resolve.values.flatten specs = @resolver.resolve.values.flatten
specs.map(&:class).uniq.should == [Pod::Specification] specs.map(&:class).uniq.should == [Pod::Specification]
specs.map(&:name).sort.should == %w{ A2DynamicDelegate BlocksKit } specs.map(&:name).sort.should == %w{ A2DynamicDelegate BlocksKit libffi }
end end
it "does not raise if all dependencies match the platform of the root spec (Podfile)" do it "does not raise if all dependencies match the platform of the root spec (Podfile)" do
...@@ -106,7 +107,6 @@ describe "Pod::Resolver" do ...@@ -106,7 +107,6 @@ describe "Pod::Resolver" do
RestKit/ObjectMapping/JSON RestKit/ObjectMapping/JSON
RestKit/UI RestKit/UI
SOCKit SOCKit
UDTableView
cocoa-oauth cocoa-oauth
} }
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