mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02:00
Try to add workaround for warnings
``` .../ext/psych/lib/psych/versions.rb:4: warning: already initialized constant Psych::VERSION .../.ext/common/psych/versions.rb:4: warning: previous definition of VERSION was here ``` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
50cb77f264
commit
efa19f9f5a
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
module Psych
|
module Psych
|
||||||
# The version is Psych you're using
|
# The version is Psych you're using
|
||||||
VERSION = '3.1.0.pre1'
|
VERSION ||= '3.1.0.pre1'
|
||||||
|
|
||||||
if RUBY_ENGINE == 'jruby'
|
if RUBY_ENGINE == 'jruby'
|
||||||
DEFAULT_SNAKEYAML_VERSION = '1.21'.freeze
|
DEFAULT_SNAKEYAML_VERSION = '1.21'.freeze
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue