mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
88de87c295
There actually are some libraries that requires 'irb' such as byebug, and when 'irb' is required, it requires irb/src_encoding.rb, then it defines the toplevel default_src_encoding method that is visible from anywhere in the end users' apps. Here's a quick oneliner that shows what's happening. % ruby -rpry-byebug -e 'p private_methods(false)' [:include, :using, :define_method, :public, :private, :DelegateClass, :default_src_encoding] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
7 lines
147 B
Ruby
7 lines
147 B
Ruby
# frozen_string_literal: false
|
|
# DO NOT WRITE ANY MAGIC COMMENT HERE.
|
|
module IRB
|
|
def self.default_src_encoding
|
|
return __ENCODING__
|
|
end
|
|
end
|