D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
opt
/
alt
/
ruby33
/
share
/
gems
/
gems
/
bundler-2.5.11
/
lib
/
bundler
/
Filename :
safe_marshal.rb
back
Copy
# frozen_string_literal: true module Bundler module SafeMarshal ALLOWED_CLASSES = [ Array, FalseClass, Gem::Specification, Gem::Version, Hash, String, Symbol, Time, TrueClass, ].freeze ERROR = "Unexpected class %s present in marshaled data. Only %s are allowed." PROC = proc do |object| object.tap do unless ALLOWED_CLASSES.include?(object.class) raise TypeError, format(ERROR, object.class, ALLOWED_CLASSES.join(", ")) end end end def self.proc PROC end end end