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

Bump version to 0.6.0

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