Commit aa8d39a0 authored by Fabio Pelosin's avatar Fabio Pelosin

Merge branch 'master' into develop

* master:
  Fix #324 - Setup should use `https://github.com/CocoaPods/Specs.git` url
parents 8fc003dd fe6985ab
...@@ -31,7 +31,7 @@ module Pod ...@@ -31,7 +31,7 @@ module Pod
end end
def read_only_url def read_only_url
'git://github.com/CocoaPods/Specs.git' 'https://github.com/CocoaPods/Specs.git'
end end
def read_write_url def read_write_url
......
...@@ -17,7 +17,7 @@ describe "Pod::Command::Setup" do ...@@ -17,7 +17,7 @@ describe "Pod::Command::Setup" do
it "returns the read only URL of the `master' spec-repo" do it "returns the read only URL of the `master' spec-repo" do
cmd = Pod::Command::Setup.new(argv) cmd = Pod::Command::Setup.new(argv)
cmd.url.should == 'git://github.com/CocoaPods/Specs.git' cmd.url.should == 'https://github.com/CocoaPods/Specs.git'
end end
it "returns the push URL of the `master' spec-repo" do it "returns the push URL of the `master' spec-repo" 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