From: Michal Fojtik <[email protected]> Using HTTPS connection is now prefered way how to access rubygems. Under MRI 2.0 having non-https URL will print a huge ugly warning.
Signed-off-by: Michal fojtik <[email protected]> --- server/Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Gemfile b/server/Gemfile index 4df57fe..d3cc5cf 100644 --- a/server/Gemfile +++ b/server/Gemfile @@ -1,4 +1,4 @@ -source "http://rubygems.org" +source "https://rubygems.org" gemspec -- 1.8.1.2
