aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/attributes/float.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-08-12 11:09:54 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-08-12 11:09:54 -0700
commit139038130dd0dadc995aeffd2300f0ef72b74258 (patch)
tree14f6e2b88f59067eac341f2d57c0f8df7ff0f0f8 /lib/arel/algebra/attributes/float.rb
parent8543c9d302a726a13ef697cbedd96a2135678958 (diff)
downloadrails-139038130dd0dadc995aeffd2300f0ef72b74258.tar.gz
rails-139038130dd0dadc995aeffd2300f0ef72b74258.tar.bz2
rails-139038130dd0dadc995aeffd2300f0ef72b74258.zip
clean slate
Diffstat (limited to 'lib/arel/algebra/attributes/float.rb')
-rw-r--r--lib/arel/algebra/attributes/float.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/arel/algebra/attributes/float.rb b/lib/arel/algebra/attributes/float.rb
deleted file mode 100644
index 01c95e69f9..0000000000
--- a/lib/arel/algebra/attributes/float.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-module Arel
- module Attributes
- class Float < Attribute
- def type_cast(val)
- type_cast_to_numeric(val, :to_f)
- end
- end
- end
-end