Fix a RuboCop offences using `rubocop -a`

This commit is contained in:
Koichi ITO 2017-05-24 15:21:02 +09:00
parent 525586417e
commit bef95d372f
4 changed files with 4 additions and 7 deletions

View File

@ -110,7 +110,6 @@ module ActiveRecord
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

View File

@ -71,9 +71,9 @@ module ActiveRecord
@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

View File

@ -128,7 +128,7 @@ class AssociationCallbacksTest < ActiveRecord::TestCase
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

View File

@ -536,7 +536,6 @@ module ActiveSupport
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 @@ module ActiveSupport
ActiveSupport::Notifications.instrument("cache_#{operation}.active_support", payload) { yield(payload) }
end
def log
return unless logger && logger.debug? && !silence?
logger.debug(yield)