Using https protocol instead of http.

This commit is contained in:
Parker Moore 2013-02-24 01:54:13 +01:00
parent cdd3c0ef0c
commit f8a90d711f
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ module Jekyll
end end
def render(context) def render(context)
"<script src=\"http://gist.github.com/#{@gist}.js\"> </script>" "<script src=\"https://gist.github.com/#{@gist}.js\"> </script>"
end end
end end
end end

View File

@ -218,7 +218,7 @@ CONTENT
end end
should "write script tag" do should "write script tag" do
assert_match %r{<script src='http://gist.github.com/#{@gist}.js'>\s</script>}, @result assert_match %r{<script src='https://gist.github.com/#{@gist}.js'>\s</script>}, @result
end end
end end
end end