diff options
author | Bryan Helmkamp <bryan@brynary.com> | 2009-09-20 12:59:32 -0400 |
---|---|---|
committer | Bryan Helmkamp <bryan@brynary.com> | 2009-09-20 12:59:32 -0400 |
commit | 927d8b8cde930244a16215c57896c8e45f616d0f (patch) | |
tree | 0edfba7f236dddb2a3585a591588c21651dbb8b7 /lib/arel/algebra | |
parent | 6690e3c007f65a39797a92462aaabf564bc709b4 (diff) | |
download | rails-927d8b8cde930244a16215c57896c8e45f616d0f.tar.gz rails-927d8b8cde930244a16215c57896c8e45f616d0f.tar.bz2 rails-927d8b8cde930244a16215c57896c8e45f616d0f.zip |
Fix almost all Ruby warnings during spec suite
Diffstat (limited to 'lib/arel/algebra')
-rw-r--r-- | lib/arel/algebra/extensions/class.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/algebra/extensions/class.rb b/lib/arel/algebra/extensions/class.rb index 56cad3aaa8..d0894931da 100644 --- a/lib/arel/algebra/extensions/class.rb +++ b/lib/arel/algebra/extensions/class.rb @@ -2,7 +2,7 @@ module Arel module ClassExtensions def attributes(*attrs) @attributes = attrs - attr_reader *attrs + attr_reader(*attrs) end def deriving(*methods) |