We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8d50e commit 937964fCopy full SHA for 937964f
lib/uri/common.rb
@@ -19,6 +19,8 @@ module URI
19
Parser = RFC2396_Parser
20
RFC3986_PARSER = RFC3986_Parser.new
21
Ractor.make_shareable(RFC3986_PARSER) if defined?(Ractor)
22
+ RFC2396_PARSER = RFC2396_Parser.new
23
+ Ractor.make_shareable(RFC2396_PARSER) if defined?(Ractor)
24
25
# URI::Parser.new
26
DEFAULT_PARSER = Parser.new
lib/uri/version.rb
@@ -1,6 +1,6 @@
1
module URI
2
# :stopdoc:
3
- VERSION_CODE = '001300'.freeze
+ VERSION_CODE = '001301'.freeze
4
VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
5
# :startdoc:
6
end
0 commit comments