summaryrefslogtreecommitdiff
path: root/lib/psych.rb
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2016-09-07 12:05:30 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2016-09-07 12:05:30 +0900
commitf5a5fae25ddc78a864621fde579b4a62b074416d (patch)
tree633e0a3d1ed7c3005f87094ebae796fbafa25210 /lib/psych.rb
parentb88e3c4d268316606dfbf7d6207fdb3fb845689f (diff)
downloadpsych-f5a5fae25ddc78a864621fde579b4a62b074416d.tar.gz
bump version to 2.1.1v2.1.1
Diffstat (limited to 'lib/psych.rb')
-rw-r--r--lib/psych.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/psych.rb b/lib/psych.rb
index 15371cd..ecef46c 100644
--- a/lib/psych.rb
+++ b/lib/psych.rb
@@ -224,7 +224,7 @@ require 'psych/class_loader'
module Psych
# The version is Psych you're using
- VERSION = '2.1.0'
+ VERSION = '2.1.1'
# The version of libyaml Psych is using
LIBYAML_VERSION = Psych.libyaml_version.join '.'
@@ -469,7 +469,7 @@ module Psych
###
# Load the document contained in +filename+. Returns the yaml contained in
# +filename+ as a Ruby object, or if the file is empty, it returns
- # the specified default return value, which defaults to an empty Hash
+ # the specified default return value, which defaults to an empty Hash
def self.load_file filename, fallback = false
File.open(filename, 'r:bom|utf-8') { |f|
self.load f, filename, FALLBACK.new(fallback)