aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-05-27 10:59:22 -0700
committerSean Griffin <sean@thoughtbot.com>2014-05-27 19:44:29 -0700
commit728fa69839d2c3b839391f9077896c06df80bddf (patch)
treedab29e5d69868c8abf9a00491ca8cc0acd5d04c3 /activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb
parent7f73b9152cfc3f218cfc862e971ba56b94f6be10 (diff)
downloadrails-728fa69839d2c3b839391f9077896c06df80bddf.tar.gz
rails-728fa69839d2c3b839391f9077896c06df80bddf.tar.bz2
rails-728fa69839d2c3b839391f9077896c06df80bddf.zip
Move types to the top level `ActiveRecord` namespace
`ActiveRecord::ConnectionAdapters::Type::Value` => `ActiveRecord::Type::Value`
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb b/activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb
deleted file mode 100644
index bb1abc77ff..0000000000
--- a/activerecord/lib/active_record/connection_adapters/type/hash_lookup_type_map.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-module ActiveRecord
- module ConnectionAdapters
- module Type
- class HashLookupTypeMap < TypeMap # :nodoc:
- delegate :key?, to: :@mapping
-
- def lookup(type, *args)
- @mapping.fetch(type, proc { default_value }).call(type, *args)
- end
-
- def fetch(type, *args, &block)
- @mapping.fetch(type, block).call(type, *args)
- end
-
- def alias_type(type, alias_type)
- register_type(type) { |_, *args| lookup(alias_type, *args) }
- end
- end
- end
- end
-end