提交 4e05bfb8 编写于 作者: A Akira Matsuda

Unused methods, module, etc.

上级 b7b27fc2
......@@ -71,14 +71,6 @@ class Account < ActiveRecord::Base
i.belongs_to :nested_qualified_billing_firm, :class_name => 'MyApplication::Billing::Nested::Firm'
i.belongs_to :nested_unqualified_billing_firm, :class_name => 'Nested::Firm'
end
validate :check_empty_credit_limit
protected
def check_empty_credit_limit
errors.add_on_empty "credit_limit"
end
end
end
end
......@@ -91,14 +91,6 @@ class NestedPerson < ActiveRecord::Base
has_one :best_friend, :class_name => 'NestedPerson', :foreign_key => :best_friend_id
accepts_nested_attributes_for :best_friend, :update_only => true
def comments=(new_comments)
raise RuntimeError
end
def best_friend_first_name=(new_name)
assign_attributes({ :best_friend_attributes => { :first_name => new_name } })
end
end
class Insure
......
class Task < ActiveRecord::Base
def updated_at
ending
end
end
......@@ -26,12 +26,6 @@ def call
end
}.new(self)
module NamedExtension
def two
2
end
end
has_many :replies, :dependent => :destroy, :foreign_key => "parent_id"
has_many :approved_replies, -> { approved }, class_name: 'Reply', foreign_key: "parent_id", counter_cache: 'replies_count'
has_many :replies_with_primary_key, :class_name => "Reply", :dependent => :destroy, :primary_key => "title", :foreign_key => "parent_title"
......@@ -108,9 +102,6 @@ class ImportantTopic < Topic
end
class BlankTopic < Topic
def blank?
true
end
end
module Web
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册