Skip to content

Commit 05488d2

Browse files
authored
Merge pull request #2 from opendoor-labs/trevorcreech/dont-strip-encoding
Don't strip encoding
2 parents 4f2707e + 13b1f1e commit 05488d2

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

.rubocop_schema.49.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Layout/ExtraSpacing:
1313
Layout/SpaceBeforeFirstArg:
1414
Enabled: true
1515

16+
Style/Encoding:
17+
Enabled: false
18+
1619
Style/NumericLiterals:
1720
Enabled: false
1821

.rubocop_schema.53.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Layout/ExtraSpacing:
1313
Layout/SpaceBeforeFirstArg:
1414
Enabled: true
1515

16+
Style/Encoding:
17+
Enabled: false
18+
1619
Style/NumericLiterals:
1720
Enabled: false
1821

spec/integration/integration_spec.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
def reference_db_schema
2222
<<-RUBY
23+
# encoding: UTF-8
24+
2325
# This file is auto-generated from the current state of the database. Instead
2426
# of editing this file, please use the migrations feature of Active Record to
2527
# incrementally modify your database, and then regenerate this schema definition.

spec/test-app/db/schema.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: UTF-8
2+
13
# This file is auto-generated from the current state of the database. Instead
24
# of editing this file, please use the migrations feature of Active Record to
35
# incrementally modify your database, and then regenerate this schema definition.

0 commit comments

Comments
 (0)