Guest User

Untitled

a guest
May 24th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1.  
  2. stdlib_files = %w[
  3. Win32API.rb
  4. abbrev.rb
  5. benchmark.rb
  6. cgi.rb
  7. csv.rb
  8. debug.rb
  9. delegate.rb
  10. dl.rb
  11. drb
  12. erb.rb
  13. fileutils.rb
  14. forwardable.rb
  15. generator.rb
  16. getopts.rb
  17. ipaddr.rb
  18. irb.rb
  19. irb
  20. logger.rb
  21. matrix.rb
  22. mkmf.rb
  23. monitor.rb
  24. net
  25. open3.rb
  26. optparse.rb
  27. parsearg.rb
  28. pathname.rb
  29. rdoc
  30. resolve.rb
  31. rexml.rb
  32. scanf.rb
  33. set.rb
  34. shell
  35. sync.rb
  36. thread.rb
  37. tmpdir.rb
  38. tracer.rb
  39. uri
  40. uri.rb
  41. webrick
  42. xmlrpc
  43. ]
  44. # Win32API is a native ext in MRI but a .rb for us
  45. # dl.rb is generated in MRI(???), static for us
  46. # generator.rb is generator_internal.rb in builtin for us and mostly different from MRI
  47. # rdoc/ri contains functionality for java classes and requires jar-file+cache support in jruby's site_lib
  48. # tempfile is native on JRuby so there's no tempfile.rb
  49. # timeout is native on JRuby so there's no timeout.rb
  50. # weakref is native on JRuby so there's no weakref.rb
  51.  
  52. ext_files = {
  53. 'ext/bigdecimal/lib/bigdecimal' => 'bigdecimal'
  54. 'ext/dl/lib/dl' => 'dl'
  55. 'ext/pty/lib/expect.rb' => 'expect.rb'
  56. 'ext/io/wait/lib/nonblock.rb' => 'io/nonblock.rb'
  57. 'ext/nkf/lib/kconv.rb' => 'kconv.rb'
  58. 'ext/digest/lib/md5.rb' => 'md5.rb'
  59. 'ext/digest/lib/sha1.rb' => 'sha1.rb'
  60. 'ext/Win32API/lib/win32' => 'win32'
  61. ]
Add Comment
Please, Sign In to add comment