Sha256: 7426dc53c4f5538280250acf417c7e65c15cd94747c352ef7c21da2fa2abc948

Contents?: true

Size: 597 Bytes

Versions: 144

Compression:

Stored size: 597 Bytes

Contents

# 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

Version data entries

144 entries across 144 versions & 4 rubygems

Version Path
direct7-0.0.18 vendor/bundle/ruby/2.7.0/gems/bundler-2.4.21/lib/bundler/safe_marshal.rb
direct7-0.0.17 vendor/bundle/ruby/2.7.0/gems/bundler-2.4.21/lib/bundler/safe_marshal.rb
rubygems-update-3.5.23 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.23 lib/bundler/safe_marshal.rb
direct7-0.0.16 vendor/bundle/ruby/2.7.0/gems/bundler-2.4.21/lib/bundler/safe_marshal.rb
rubygems-update-3.5.22 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.22 lib/bundler/safe_marshal.rb
rubygems-update-3.5.21 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.21 lib/bundler/safe_marshal.rb
rubygems-update-3.5.20 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.20 lib/bundler/safe_marshal.rb
rubygems-update-3.5.19 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.19 lib/bundler/safe_marshal.rb
rubygems-update-3.5.18 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.18 lib/bundler/safe_marshal.rb
rubygems-update-3.5.17 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.17 lib/bundler/safe_marshal.rb
rubygems-update-3.5.16 bundler/lib/bundler/safe_marshal.rb
bundler-2.5.16 lib/bundler/safe_marshal.rb
rubygems-update-3.5.15 bundler/lib/bundler/safe_marshal.rb