aboutsummaryrefslogtreecommitdiffstats
path: root/ext/psych/lib/psych/scalar_scanner.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-07 03:16:15 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-07 03:16:15 +0000
commit6b80aa0fa039db7c95f930d311bb39c14c4a6531 (patch)
treeff8be4e00bba47e42a7b2978e274bf3ca29fe7ff /ext/psych/lib/psych/scalar_scanner.rb
parentdd35c8fa6f85f49e0aab5e14dc7786a26ea88d6b (diff)
downloadruby-6b80aa0fa039db7c95f930d311bb39c14c4a6531.tar.gz
* ext/psych/*, test/psych/*: Update psych-2.1.1
This version fixed following pull requests. https://github.com/tenderlove/psych/pull/284 https://github.com/tenderlove/psych/pull/276 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/psych/lib/psych/scalar_scanner.rb')
-rw-r--r--ext/psych/lib/psych/scalar_scanner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/psych/lib/psych/scalar_scanner.rb b/ext/psych/lib/psych/scalar_scanner.rb
index f519da1465..a849359d18 100644
--- a/ext/psych/lib/psych/scalar_scanner.rb
+++ b/ext/psych/lib/psych/scalar_scanner.rb
@@ -100,7 +100,7 @@ module Psych
@string_cache[string] = true
string
else
- Float(string.gsub(/[,_]|\.$/, ''))
+ Float(string.gsub(/[,_]|\.([Ee]|$)/, '\1'))
end
else
int = parse_int string.gsub(/[,_]/, '')