summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--lib/psych.rb2
-rw-r--r--psych.gemspec2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 45eb45e..bff6d04 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
## Description
Psych is a YAML parser and emitter. Psych leverages
-[libyaml](http://pyyaml.org/wiki/LibYAML) for its YAML parsing and emitting
+[libyaml](https://pyyaml.org/wiki/LibYAML) for its YAML parsing and emitting
capabilities. In addition to wrapping libyaml, Psych also knows how to
serialize and de-serialize most Ruby objects to and from the YAML format.
diff --git a/lib/psych.rb b/lib/psych.rb
index 0f58298..6ca5724 100644
--- a/lib/psych.rb
+++ b/lib/psych.rb
@@ -36,7 +36,7 @@ require 'psych/class_loader'
# = Overview
#
# Psych is a YAML parser and emitter.
-# Psych leverages libyaml [Home page: http://pyyaml.org/wiki/LibYAML]
+# Psych leverages libyaml [Home page: https://pyyaml.org/wiki/LibYAML]
# or [HG repo: https://bitbucket.org/xi/libyaml] for its YAML parsing
# and emitting capabilities. In addition to wrapping libyaml, Psych also
# knows how to serialize and de-serialize most Ruby objects to and from
diff --git a/psych.gemspec b/psych.gemspec
index be63c66..2197c75 100644
--- a/psych.gemspec
+++ b/psych.gemspec
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org", "headius@headius.com"]
s.summary = "Psych is a YAML parser and emitter"
s.description = <<-DESCRIPTION
-Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML]
+Psych is a YAML parser and emitter. Psych leverages libyaml[https://pyyaml.org/wiki/LibYAML]
for its YAML parsing and emitting capabilities. In addition to wrapping libyaml,
Psych also knows how to serialize and de-serialize most Ruby objects to and from the YAML format.
DESCRIPTION