lib/hash_math.rb in hash_math-0.0.1 vs lib/hash_math.rb in hash_math-1.0.0.pre.alpha
- old
+ new
@@ -5,8 +5,13 @@
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
+require_relative 'hash_math/matrix'
+require_relative 'hash_math/record'
+require_relative 'hash_math/table'
+
# Top-level namespace
module HashMath
+ class KeyOutOfBoundsError < StandardError; end
end