lib/more/facets/orderedhash.rb in facets-2.6.0 vs lib/more/facets/orderedhash.rb in facets-2.7.0

- old
+ new

@@ -1,37 +1,5 @@ -# = OrderedHash -# -# Another name for Dictionary. -# -# == Todo -# -# * Make this an alternative to Dictionary that -# is more "slim", not having the extra sorting -# features of dictionary. -# -# = Copying -# -# Copyright (c) 2005 Thomas Sawyer, George Moschovitis -# -# Ruby License -# -# This module is free software. You may use, modify, and/or redistribute this -# software under the same terms as Ruby. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. - require 'facets/dictionary' -# = OrderedHash -# -# OrderedHash is an alias for the Dictionary class - +# Ordered hash is the same as a Dictionary. OrderedHash = Dictionary - -# = AutoOrderedHash -# -# AutoOrderedHash is an alias for the AutoDictionary class - -#AutoOrderedHash = AutoDictionary # was replaced by Dictionary.auto() (or autonew?)