lib/persistent_dmnd/hash.rb in persistent-dmnd-2.0.2 vs lib/persistent_dmnd/hash.rb in persistent-dmnd-2.0.3
- old
+ new
@@ -1,16 +1,16 @@
# encoding: UTF-8
# typed: false
# Persistent-💎: Ruby gem for easily creating immutable data structures
-# Copyright (c) 2017 Ivo Anjo <ivo.anjo@ist.utl.pt>
+# Copyright (c) 2017-2021 Ivo Anjo <ivo@ivoanjo.me>
#
# This file is part of Persistent-💎.
#
# MIT License
#
-# Copyright (c) 2017 Ivo Anjo
+# Copyright (c) 2017-2021 Ivo Anjo
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@@ -28,16 +28,16 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# frozen_string_literal: true
-require 'persistent_dmnd/self_conversion'
-require 'persistent_dmnd/is_persistent'
-require 'persistent_dmnd/concurrent_ruby_support'
-require 'persistent_dmnd/jruby_workaround'
+require "persistent_dmnd/self_conversion"
+require "persistent_dmnd/is_persistent"
+require "persistent_dmnd/concurrent_ruby_support"
+require "persistent_dmnd/jruby_workaround"
-require 'hamster'
-require 'set'
+require "hamster"
+require "set"
module Persistent💎
class Hash < Hamster::Hash
include SelfConversion
include IsPersistent