Skip to content

Commit

Permalink
Merge pull request #33350 from kamipo/address_blank_lines_automatically
Browse files Browse the repository at this point in the history
Enable `Layout/EmptyLinesAroundBlockBody` to reduce review cost in the future
  • Loading branch information
rafaelfranca committed Jul 12, 2018
2 parents 16f435f + 6f58b2c commit 0d864e7
Show file tree
Hide file tree
Showing 17 changed files with 3 additions and 30 deletions.
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ Layout/EndAlignment:
Layout/EmptyLineAfterMagicComment:
Enabled: true

Layout/EmptyLinesAroundBlockBody:
Enabled: true

# In a regular class definition, no empty lines around the body.
Layout/EmptyLinesAroundClassBody:
Enabled: true
Expand Down
1 change: 0 additions & 1 deletion actioncable/test/connection/client_socket_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def on_error(message)
# Internal hax = :(
client = connection.websocket.send(:websocket)
client.instance_variable_get("@stream").stub(:write, proc { raise "foo" }) do

assert_not_called(client, :client_gone) do
client.write("boo")
end
Expand Down
1 change: 0 additions & 1 deletion actionpack/lib/action_dispatch/middleware/static.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def match?(path)
rescue SystemCallError
false
end

}
return ::Rack::Utils.escape_path(match).b
end
Expand Down
1 change: 0 additions & 1 deletion actionpack/test/controller/resources_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def test_override_paths_for_member_and_collection_methods
member_methods.each_key do |action|
assert_named_route "/messages/1/#{path_names[action] || action}", "#{action}_message_path", action: action, id: "1"
end

end
end
end
Expand Down
3 changes: 0 additions & 3 deletions actionpack/test/controller/routing_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,6 @@ def default_route_set
@default_route_set ||= begin
set = ActionDispatch::Routing::RouteSet.new
set.draw do

ActiveSupport::Deprecation.silence do
get "/:controller(/:action(/:id))"
end
Expand Down Expand Up @@ -1342,11 +1341,9 @@ def test_root_map

def test_namespace
set.draw do

namespace "api" do
get "inventory" => "products#inventory"
end

end

params = request_path_params("/api/inventory", method: :get)
Expand Down
2 changes: 0 additions & 2 deletions activerecord/test/cases/arel/insert_manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ class InsertManagerTest < Arel::Spec
end

describe "select" do

it "accepts a select query in place of a VALUES clause" do
table = Table.new :users

Expand All @@ -238,7 +237,6 @@ class InsertManagerTest < Arel::Spec
INSERT INTO "users" ("id", "name") (SELECT 1, "aaron")
}
end

end
end
end
11 changes: 0 additions & 11 deletions activerecord/test/cases/arel/select_manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,6 @@ def test_join_sources
@m2 = Arel::SelectManager.new table
@m2.project Arel.star
@m2.where(table[:age].gt(99))


end

it "should union two managers" do
Expand All @@ -266,7 +264,6 @@ def test_join_sources
( SELECT * FROM "users" WHERE "users"."age" < 18 UNION ALL SELECT * FROM "users" WHERE "users"."age" > 99 )
}
end

end

describe "intersect" do
Expand All @@ -279,8 +276,6 @@ def test_join_sources
@m2 = Arel::SelectManager.new table
@m2.project Arel.star
@m2.where(table[:age].lt(99))


end

it "should interect two managers" do
Expand All @@ -293,7 +288,6 @@ def test_join_sources
( SELECT * FROM "users" WHERE "users"."age" > 18 INTERSECT SELECT * FROM "users" WHERE "users"."age" < 99 )
}
end

end

describe "except" do
Expand All @@ -318,7 +312,6 @@ def test_join_sources
( SELECT * FROM "users" WHERE "users"."age" BETWEEN 18 AND 60 EXCEPT SELECT * FROM "users" WHERE "users"."age" BETWEEN 40 AND 99 )
}
end

end

describe "with" do
Expand Down Expand Up @@ -647,7 +640,6 @@ def test_join_sources
end

describe "joins" do

it "returns inner join sql" do
table = Table.new :users
aliaz = table.alias
Expand Down Expand Up @@ -1002,7 +994,6 @@ def test_join_sources
end

describe "update" do

it "creates an update statement" do
table = Table.new :users
manager = Arel::SelectManager.new
Expand Down Expand Up @@ -1075,7 +1066,6 @@ def test_join_sources
UPDATE "users" SET "id" = 1 WHERE "users"."id" IN (SELECT "users"."id" FROM "users" WHERE "users"."foo" = 10 LIMIT 42)
}
end

end

describe "project" do
Expand All @@ -1097,7 +1087,6 @@ def test_join_sources
manager.project "*"
manager.to_sql.must_be_like %{ SELECT * }
end

end

describe "projections" do
Expand Down
1 change: 0 additions & 1 deletion activerecord/test/cases/inheritance_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def test_compute_type_on_undefined_method
end

ActiveSupport::Dependencies.stub(:safe_constantize, proc { raise e }) do

exception = assert_raises NameError do
Company.send :compute_type, "InvalidModel"
end
Expand Down
1 change: 0 additions & 1 deletion activerecord/test/cases/nested_attributes_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,6 @@ def test_should_not_remove_scheduled_destroys_when_loading_association
def test_should_take_a_hash_with_composite_id_keys_and_assign_the_attributes_to_the_associated_models
@child_1.stub(:id, "ABC1X") do
@child_2.stub(:id, "ABC2X") do

@pirate.attributes = {
association_getter => [
{ id: @child_1.id, name: "Grace OMalley" },
Expand Down
1 change: 0 additions & 1 deletion activerecord/test/cases/query_cache_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,6 @@ def test_query_caching_is_local_to_the_current_thread
assert_not ActiveRecord::Base.connection.query_cache_enabled
}.join
}.call({})

end
end

Expand Down
1 change: 0 additions & 1 deletion activerecord/test/cases/transactions_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,6 @@ def test_rollback_when_commit_raises
assert_called(Topic.connection, :begin_db_transaction) do
Topic.connection.stub(:commit_db_transaction, -> { raise("OH NOES") }) do
assert_called(Topic.connection, :rollback_db_transaction) do

e = assert_raise RuntimeError do
Topic.transaction do
# do nothing
Expand Down
1 change: 0 additions & 1 deletion activerecord/test/schema/mysql2_specific_schema.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

ActiveRecord::Schema.define do

if subsecond_precision_supported?
create_table :datetime_defaults, force: true do |t|
t.datetime :modified_datetime, default: -> { "CURRENT_TIMESTAMP" }
Expand Down
2 changes: 0 additions & 2 deletions activerecord/test/schema/oracle_specific_schema.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

ActiveRecord::Schema.define do

execute "drop table test_oracle_defaults" rescue nil
execute "drop sequence test_oracle_defaults_seq" rescue nil
execute "drop sequence companies_nonstd_seq" rescue nil
Expand Down Expand Up @@ -38,5 +37,4 @@
)
SQL
execute "create sequence defaults_seq minvalue 10000"

end
1 change: 0 additions & 1 deletion activerecord/test/schema/postgresql_specific_schema.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

ActiveRecord::Schema.define do

enable_extension!("uuid-ossp", ActiveRecord::Base.connection)
enable_extension!("pgcrypto", ActiveRecord::Base.connection) if ActiveRecord::Base.connection.supports_pgcrypto_uuid?

Expand Down
1 change: 0 additions & 1 deletion railties/lib/rails/generators.rb
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ def find_by_namespace(name, base = nil, context = nil) #:nodoc:

namespaces = Hash[subclasses.map { |klass| [klass.namespace, klass] }]
lookups.each do |namespace|

klass = namespaces[namespace]
return klass if klass
end
Expand Down
1 change: 0 additions & 1 deletion railties/lib/rails/tasks/log.rake
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

namespace :log do

##
# Truncates all/specified log files
# ENV['LOGS']
Expand Down
1 change: 0 additions & 1 deletion railties/test/railties/engine_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,6 @@ def index

get("/arunagw")
assert_equal "arunagw", last_response.body

end

test "it provides routes as default endpoint" do
Expand Down

0 comments on commit 0d864e7

Please sign in to comment.