aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type/unsigned_integer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/type/unsigned_integer.rb')
-rw-r--r--activemodel/lib/active_model/type/unsigned_integer.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/activemodel/lib/active_model/type/unsigned_integer.rb b/activemodel/lib/active_model/type/unsigned_integer.rb
deleted file mode 100644
index 288fa23efe..0000000000
--- a/activemodel/lib/active_model/type/unsigned_integer.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module ActiveModel
- module Type
- class UnsignedInteger < Integer # :nodoc:
- private
-
- def max_value
- super * 2
- end
-
- def min_value
- 0
- end
- end
- end
-end