From 0983a3a93b12cc5eaac33486ba24f1d0fbdc1468 Mon Sep 17 00:00:00 2001 From: Rune Philosof Date: Mon, 15 Aug 2016 07:39:28 +0200 Subject: [PATCH] Use https for jquery --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index bb7d240..69df601 100644 --- a/Rakefile +++ b/Rakefile @@ -38,11 +38,11 @@ task :update_jquery do suffix = "-#{version}" puts "Downloading #{filename}.js" - puts `curl -o vendor/assets/javascripts/#{filename}.js http://code.jquery.com/jquery#{suffix}.js` + puts `curl -o vendor/assets/javascripts/#{filename}.js https://code.jquery.com/jquery#{suffix}.js` puts "Downloading #{filename}.min.js" - puts `curl -o vendor/assets/javascripts/#{filename}.min.js http://code.jquery.com/jquery#{suffix}.min.js` + puts `curl -o vendor/assets/javascripts/#{filename}.min.js https://code.jquery.com/jquery#{suffix}.min.js` puts "Downloading #{filename}.min.map" - puts `curl -o vendor/assets/javascripts/#{filename}.min.map http://code.jquery.com/jquery#{suffix}.min.map` + puts `curl -o vendor/assets/javascripts/#{filename}.min.map https://code.jquery.com/jquery#{suffix}.min.map` end download_jquery('jquery', Jquery::Rails::JQUERY_VERSION)