diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-25 16:42:18 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-25 16:42:18 -0700 |
commit | b1a55238f3ac510b535490e8ccdef65dfc351ecf (patch) | |
tree | c096798de43283bb426f9711cdc255cce121cf1a /lib/arel/algebra | |
parent | 5ff03b2745a35dc76527c6c448964d216c0034cb (diff) | |
download | rails-b1a55238f3ac510b535490e8ccdef65dfc351ecf.tar.gz rails-b1a55238f3ac510b535490e8ccdef65dfc351ecf.tar.bz2 rails-b1a55238f3ac510b535490e8ccdef65dfc351ecf.zip |
fixing warnings
Diffstat (limited to 'lib/arel/algebra')
-rw-r--r-- | lib/arel/algebra/relations/operations/having.rb | 1 | ||||
-rw-r--r-- | lib/arel/algebra/relations/operations/lock.rb | 2 | ||||
-rw-r--r-- | lib/arel/algebra/relations/utilities/compound.rb | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/lib/arel/algebra/relations/operations/having.rb b/lib/arel/algebra/relations/operations/having.rb index a1bbbb3bdc..daca1f7bce 100644 --- a/lib/arel/algebra/relations/operations/having.rb +++ b/lib/arel/algebra/relations/operations/having.rb @@ -2,7 +2,6 @@ module Arel class Having < Compound attributes :relation, :predicates deriving :== - requires :restricting def initialize(relation, *predicates) predicates = [yield(relation)] + predicates if block_given? diff --git a/lib/arel/algebra/relations/operations/lock.rb b/lib/arel/algebra/relations/operations/lock.rb index 2da273cebc..4520fd668b 100644 --- a/lib/arel/algebra/relations/operations/lock.rb +++ b/lib/arel/algebra/relations/operations/lock.rb @@ -1,7 +1,7 @@ module Arel class Lock < Compound attributes :relation, :locked - deriving :initialize, :== + deriving :== def initialize(relation, locked) @relation = relation diff --git a/lib/arel/algebra/relations/utilities/compound.rb b/lib/arel/algebra/relations/utilities/compound.rb index 42ac519907..34f80b9e56 100644 --- a/lib/arel/algebra/relations/utilities/compound.rb +++ b/lib/arel/algebra/relations/utilities/compound.rb @@ -4,7 +4,7 @@ module Arel attr_reader :relation delegate :joins, :join?, :inserts, :taken, :skipped, :name, :externalizable?, - :column_for, :engine, :sources, :locked, :table_alias, + :column_for, :sources, :locked, :table_alias, :to => :relation def self.requires(feature = nil) |