aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/calculations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/calculations.rb')
-rw-r--r--activerecord/lib/active_record/calculations.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/activerecord/lib/active_record/calculations.rb b/activerecord/lib/active_record/calculations.rb
deleted file mode 100644
index ea63617c52..0000000000
--- a/activerecord/lib/active_record/calculations.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-module ActiveRecord
- module Calculations #:nodoc:
- extend ActiveSupport::Concern
-
- module ClassMethods
- delegate :count, :average, :minimum, :maximum, :sum, :calculate, :to => :scoped
- end
- end
-end