File: versions.rb

package info (click to toggle)
ruby-psych 5.0.2-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: ruby: 8,450; ansic: 894; java: 764; makefile: 14; sh: 4
file content (10 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Psych
  # The version of Psych you are using
  VERSION = '5.0.2'

  if RUBY_ENGINE == 'jruby'
    DEFAULT_SNAKEYAML_VERSION = '1.x'.freeze
  end
end