File: keyword_arguments.rb

package info (click to toggle)
ruby-rr 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,424 kB
  • sloc: ruby: 11,405; makefile: 7
file content (15 lines) | stat: -rw-r--r-- 247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module RR
  module KeywordArguments
    class << self
      if (RUBY_VERSION <=> "3.0.0") >= 0
        def fully_supported?
          true
        end
      else
        def fully_supported?
          false
        end
      end
    end
  end
end