aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-27 13:59:50 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-27 13:59:50 -0700
commite75f0e5ae5dd225fe44bd3f6c582f86e18d91ceb (patch)
tree816f605a90a76d5bbfd96a62dd5e88aa8f32e484
parent4f037f651980138f0e951f77e16fb7bd64ae4217 (diff)
downloadrails-e75f0e5ae5dd225fe44bd3f6c582f86e18d91ceb.tar.gz
rails-e75f0e5ae5dd225fe44bd3f6c582f86e18d91ceb.tar.bz2
rails-e75f0e5ae5dd225fe44bd3f6c582f86e18d91ceb.zip
these readers should be accessors
-rw-r--r--lib/arel/table.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/table.rb b/lib/arel/table.rb
index c541848c99..ba31e3183b 100644
--- a/lib/arel/table.rb
+++ b/lib/arel/table.rb
@@ -5,7 +5,7 @@ module Arel
@engine = nil
class << self; attr_accessor :engine; end
- attr_reader :name, :engine, :aliases, :table_alias
+ attr_accessor :name, :engine, :aliases, :table_alias
def initialize name, engine = Table.engine
@name = name