aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_relation/relations/table.rb
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-04-12 16:43:48 -0700
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2008-04-12 16:43:48 -0700
commit1b8f72746b38ce1e08b5fab48f3251eb09f2cba0 (patch)
tree3782ef3e88474bb6d79ba3e25b08b235fca78040 /lib/active_relation/relations/table.rb
parent6de1f350ce117129e46353f12f90a138ca3d3ead (diff)
downloadrails-1b8f72746b38ce1e08b5fab48f3251eb09f2cba0.tar.gz
rails-1b8f72746b38ce1e08b5fab48f3251eb09f2cba0.tar.bz2
rails-1b8f72746b38ce1e08b5fab48f3251eb09f2cba0.zip
- removed #qualify and #descend helper
- qualify seems no longer neccessary since everything is fully qualified - finished pending specs
Diffstat (limited to 'lib/active_relation/relations/table.rb')
-rw-r--r--lib/active_relation/relations/table.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/active_relation/relations/table.rb b/lib/active_relation/relations/table.rb
index 5ad27c1fcf..e645f71030 100644
--- a/lib/active_relation/relations/table.rb
+++ b/lib/active_relation/relations/table.rb
@@ -15,10 +15,6 @@ module ActiveRelation
end
end
- def qualify
- Rename.new self, qualifications
- end
-
def prefix_for(attribute)
self[attribute] and name
end
@@ -36,10 +32,6 @@ module ActiveRelation
@columns ||= engine.columns(name, "#{name} Columns")
end
- def descend
- yield self
- end
-
def reset
@attributes = @columns = nil
end