diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-02 09:40:41 -0400 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-02 09:40:41 -0400 |
commit | 524cbc216748ee47dce10c79b7ca1f37172a8ead (patch) | |
tree | e0f1d5b9567e0f5731da63fe4a8d87f5a96ff930 | |
parent | ede244e2367c7988fa02f5e3b956d88211bb5ade (diff) | |
parent | 73ec5a26a345846df52d547980f738d5442ef949 (diff) | |
download | rails-524cbc216748ee47dce10c79b7ca1f37172a8ead.tar.gz rails-524cbc216748ee47dce10c79b7ca1f37172a8ead.tar.bz2 rails-524cbc216748ee47dce10c79b7ca1f37172a8ead.zip |
Merge pull request #21839 from andyatkinson/remove-unusued-scopes
Remove unused scopes
-rw-r--r-- | activerecord/test/models/author.rb | 3 | ||||
-rw-r--r-- | activerecord/test/models/parrot.rb | 6 | ||||
-rw-r--r-- | activerecord/test/models/person.rb | 1 |
3 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/test/models/author.rb b/activerecord/test/models/author.rb index 8c1f14bd36..0d90cbb110 100644 --- a/activerecord/test/models/author.rb +++ b/activerecord/test/models/author.rb @@ -144,9 +144,6 @@ class Author < ActiveRecord::Base has_many :posts_with_signature, ->(record) { where("posts.title LIKE ?", "%by #{record.name.downcase}%") }, class_name: "Post" - scope :relation_include_posts, -> { includes(:posts) } - scope :relation_include_tags, -> { includes(:tags) } - attr_accessor :post_log after_initialize :set_post_log diff --git a/activerecord/test/models/parrot.rb b/activerecord/test/models/parrot.rb index b26035d944..ddc9dcaf29 100644 --- a/activerecord/test/models/parrot.rb +++ b/activerecord/test/models/parrot.rb @@ -21,9 +21,3 @@ end class DeadParrot < Parrot belongs_to :killer, :class_name => 'Pirate', foreign_key: :killer_id end - -class FunkyParrot < Parrot - before_destroy do - raise "before_destroy was called" - end -end diff --git a/activerecord/test/models/person.rb b/activerecord/test/models/person.rb index ad12f00d42..a4a9c6b0d4 100644 --- a/activerecord/test/models/person.rb +++ b/activerecord/test/models/person.rb @@ -37,7 +37,6 @@ class Person < ActiveRecord::Base has_many :essays, primary_key: "first_name", foreign_key: "writer_id" scope :males, -> { where(:gender => 'M') } - scope :females, -> { where(:gender => 'F') } end class PersonWithDependentDestroyJobs < ActiveRecord::Base |