Skip to content

Commit b2156c8

Browse files
committed
Update development dependencies
Update bundler and other development dependencies Upgrade webpacker development dependency Update rubocop rules Add Sprockets 4 manifest Update rails, capybara, webdriver dependencies Updates js error inspection to match more recent Selenium Webdriver API
1 parent ca499a6 commit b2156c8

File tree

9 files changed

+2384
-1972
lines changed

9 files changed

+2384
-1972
lines changed

.rubocop.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ AllCops:
1111
Style/AndOr:
1212
Enabled: true
1313

14-
# Do not use braces for hash literals when they are the last argument of a
15-
# method call.
16-
Style/BracesAroundHashParameters:
17-
Enabled: true
18-
1914
# Align `when` with `case`.
2015
Layout/CaseIndentation:
2116
Enabled: true
@@ -93,19 +88,19 @@ Style/StringLiterals:
9388
EnforcedStyle: double_quotes
9489

9590
# Detect hard tabs, no hard tabs.
96-
Layout/Tab:
91+
Layout/IndentationStyle:
9792
Enabled: true
9893

9994
# Blank lines should not have any spaces.
100-
Layout/TrailingBlankLines:
95+
LineLayout/TrailingEmptyLines:
10196
Enabled: true
10297

10398
# No trailing whitespace.
10499
Layout/TrailingWhitespace:
105100
Enabled: true
106101

107102
# Use quotes for string literals when they are enough.
108-
Style/UnneededPercentQ:
103+
Style/RedundantPercentQ:
109104
Enabled: true
110105

111106
# Align `end` with the matching keyword or starting expression except for

Gemfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
source "https://rubygems.org"
22

33
gem "rubocop", ">= 0.47", require: false
4-
gem "rails", "~> 5.2.0"
5-
gem "webpacker", "~> 4.0.0"
6-
gem "puma", "~> 4.0"
4+
gem "pry-byebug"
75

86
# Specify your gem's dependencies in webpacker-react.gemspec
97
gemspec

0 commit comments

Comments
 (0)