]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/wordpress/libraries/wordpress.rb
Merge branch 'patch-2' of https://github.com/Tigerfell/chef into pr257
[chef.git] / cookbooks / wordpress / libraries / wordpress.rb
index 64c5c55312786559937065aad61fd6ed356e289f..dead032567067bb44028ce4b077a461d6ea59664 100644 (file)
@@ -1,5 +1,6 @@
 require "chef/mixin/shell_out"
 
+require "addressable"
 require "httpclient"
 require "php_serialize"
 
@@ -16,7 +17,7 @@ class Chef
       end
 
       def current_plugin_version(name)
-        if svn_cat("http://plugins.svn.wordpress.org/#{name}/trunk/readme.txt") =~ /Stable tag:\s*([^\s\r]*)[\s\r]*/
+        if svn_cat("https://plugins.svn.wordpress.org/#{name}/trunk/readme.txt") =~ /Stable tag:\s*([^\s\r]*)[\s\r]*/
           Regexp.last_match[1]
         else
           "trunk"
@@ -26,7 +27,7 @@ class Chef
       private
 
       def core_version_check
-        api_get("http://api.wordpress.org/core/version-check/1.6")
+        api_get("https://api.wordpress.org/core/version-check/1.6")
       end
 
       def api_get(url)