提交 bef95d37 编写于 作者: K Koichi ITO

Fix a RuboCop offences using `rubocop -a`

上级 52558641
......@@ -110,7 +110,6 @@ def cache_key_with_version
end
end
module ClassMethods
# Defines your model's +to_param+ method to generate "pretty" URLs
# using +method_name+, which can be any attribute or method that
......
......@@ -71,9 +71,9 @@ def register_task(pattern, task)
@tasks[pattern] = task
end
register_task(/mysql/, 'ActiveRecord::Tasks::MySQLDatabaseTasks')
register_task(/postgresql/, 'ActiveRecord::Tasks::PostgreSQLDatabaseTasks')
register_task(/sqlite/, 'ActiveRecord::Tasks::SQLiteDatabaseTasks')
register_task(/mysql/, "ActiveRecord::Tasks::MySQLDatabaseTasks")
register_task(/postgresql/, "ActiveRecord::Tasks::PostgreSQLDatabaseTasks")
register_task(/sqlite/, "ActiveRecord::Tasks::SQLiteDatabaseTasks")
def db_dir
@db_dir ||= Rails.application.config.paths["db"].first
......
......@@ -128,7 +128,7 @@ def test_has_and_belongs_to_many_after_add_called_after_save
assert ar.developers_log.empty?
alice = Developer.new(name: "alice")
ar.developers_with_callbacks << alice
assert_equal"after_adding#{alice.id}", ar.developers_log.last
assert_equal "after_adding#{alice.id}", ar.developers_log.last
bob = ar.developers_with_callbacks.create(name: "bob")
assert_equal "after_adding#{bob.id}", ar.developers_log.last
......
......@@ -536,7 +536,6 @@ def merged_options(call_options)
end
end
# Prefixes a key with the namespace. Namespace and key will be delimited
# with a colon.
def normalize_key(key, options)
......@@ -587,7 +586,6 @@ def instrument(operation, key, options = nil)
ActiveSupport::Notifications.instrument("cache_#{operation}.active_support", payload) { yield(payload) }
end
def log
return unless logger && logger.debug? && !silence?
logger.debug(yield)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册