Sha256: 6b8e4ed6140375c37924e34a105e5b91bd9f5e0feb0ad2efb8a546b87a9eedba
Contents?: true
Size: 1.41 KB
Versions: 26
Compression:
Stored size: 1.41 KB
Contents
# ENV#[] raises an exception on secure mode class CGI ENV = ::ENV.to_hash end # Auto convert ASCII_8BIT pstore data (created by Ruby-1.8) to UTF-8. require 'pstore' class PStoreRuby18Exception < Exception; end class PStore alias compatible_transaction_original transaction unless defined?(compatible_transaction_original) def transaction(*args, &block) begin compatible_transaction_original(*args, &block) rescue PStoreRuby18Exception # first loaded the pstore file (it's created by Ruby-1.8) # force convert ASCII_8BIT pstore data to UTF_8 file = open_and_lock_file(@filename, false) table = Marshal::load(file, proc {|obj| if obj.respond_to?('force_encoding') && obj.encoding == Encoding::ASCII_8BIT obj.force_encoding('UTF-8') end obj }) table[:__ruby_version] = RUBY_VERSION if on_windows? save_data_with_fast_strategy(Marshal::dump(table), file) else save_data_with_atomic_file_rename_strategy(Marshal::dump(table), file) end retry end end private def load(content) table = Marshal::load(content) raise PStoreRuby18Exception.new if !table[:__ruby_version] || table[:__ruby_version] < '1.9' # hide __ruby_version to caller table.delete(:__ruby_version) table end def dump(table) table[:__ruby_version] = RUBY_VERSION Marshal::dump(table) end end # Local Variables: # mode: ruby # indent-tabs-mode: t # tab-width: 3 # ruby-indent-level: 3 # End:
Version data entries
26 entries across 21 versions & 1 rubygems