File: dump_data.rb

package info (click to toggle)
ruby-defaults 1%3A3.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: ruby: 81; sh: 77; makefile: 30
file content (12 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/ruby

require File.dirname(__FILE__) + '/../ruby_debian_dev.rb'

%w[
  SUPPORTED_RUBY_VERSIONS
  RUBY_CONFIG_VERSION
  RUBY_API_VERSION
  SUPPORTED_RUBY_SHARED_LIBRARIES
].each do |c|
  puts "#{c}: #{RubyDebianDev.const_get(c)}"
end