Skip to content

Commit e327a02

Browse files
Judahmeekjustin808
andauthored
Document optional configuration for bundle caching with ReactOnRailsPro (#1370)
* document optional configuration for bundle caching with ReactOnRailsPro * set rubocop version Co-authored-by: Justin Gordon <[email protected]>
1 parent 36502b8 commit e327a02

File tree

7 files changed

+27
-20
lines changed

7 files changed

+27
-20
lines changed

.rubocop.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ AllCops:
3535

3636
Naming/FileName:
3737
Exclude:
38-
- 'Gemfile'
38+
- '**/Gemfile'
39+
- '**/Rakefile'
3940

4041
Layout/LineLength:
4142
Max: 120

Gemfile.development_dependencies

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ group :development, :test do
2929
gem "pry-doc"
3030
gem "pry-rails"
3131
gem "pry-rescue"
32-
gem "rubocop", require: false
32+
gem "rubocop", "1.14.0", require: false
3333
gem "rubocop-performance", require: false
3434
gem "rubocop-rspec", require: false
3535
gem "scss_lint", require: false

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Rake will automatically load any *.rake files inside of the "rakelib" folder
44
# See rakelib/
55

6-
tasks = %w[run_rspec lint]
6+
tasks = %w[lint run_rspec]
77
prepare_for_ci = %w[node_package dummy_apps]
88

99
if ENV["USE_COVERALLS"] == "TRUE"

docs/basics/configuration.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,14 @@ ReactOnRails.configure do |config|
7373
# If that file exists, React on Rails thinks that you'll use the rails/webpacker bin/webpack compiler.
7474
config.build_production_command = "RAILS_ENV=production bin/webpack"
7575

76-
# Alternatively, you can also specify a module containing a class method `call`
76+
# Alternatively, you can also specify a module containing a class method `call`
7777
# In this example, the module BuildProductionCommand would have a class method `call`.
7878
# See bottom for an example of the BuildProductionCommand module.
7979
# config.build_production_command = BuildProductionCommand
80-
80+
# If you wish to utilize ReactOnRailsPro production bundle caching logic, then use
81+
# config.build_production_command = ReactOnRailsPro::AssetsPrecompile
82+
# and be sure to check ReactOnRailsPro's configuration documentation!
83+
8184
################################################################################
8285
################################################################################
8386
# SERVER RENDERING OPTIONS

lib/generators/react_on_rails/base_generator.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def print_helpful_message
132132
# From https://github.com/rails/rails/blob/4c940b2dbfb457f67c6250b720f63501d74a45fd/railties/lib/rails/generators/rails/app/app_generator.rb
133133
def app_name
134134
@app_name ||= (defined_app_const_base? ? defined_app_name : File.basename(destination_root))
135-
.tr('\\', "").tr(". ", "_")
135+
.tr("\\", "").tr(". ", "_")
136136
end
137137

138138
def defined_app_name

lib/react_on_rails/locales/base.rb

+10-7
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,18 @@ def file(name)
5454
end
5555

5656
def locale_files
57+
# rubocop:disable Layout/IndentationWidth, Style/RedundantBegin
5758
@locale_files ||= begin
58-
if i18n_yml_dir.present?
59-
Dir["#{i18n_yml_dir}/**/*.yml"]
60-
else
61-
ReactOnRails::Utils.truthy_presence(
62-
Rails.application && Rails.application.config.i18n.load_path
63-
).presence
64-
end
59+
if i18n_yml_dir.present?
60+
Dir["#{i18n_yml_dir}/**/*.yml"]
61+
else
62+
ReactOnRails::Utils.truthy_presence(
63+
Rails.application && Rails.application.config.i18n.load_path
64+
).presence
65+
end
6566
end
67+
68+
# rubocop:enable Layout/IndentationWidth, Style/RedundantBegin
6669
end
6770

6871
def i18n_dir

spec/dummy/Gemfile.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ GEM
150150
mini_portile2 (~> 2.5.0)
151151
racc (~> 1.4)
152152
parallel (1.20.1)
153-
parser (3.0.0.0)
153+
parser (3.0.1.1)
154154
ast (~> 2.4.1)
155155
pry (0.13.1)
156156
coderay (~> 1.1)
@@ -208,7 +208,7 @@ GEM
208208
ffi (~> 1.0)
209209
rdoc (6.3.0)
210210
regexp_parser (2.1.1)
211-
rexml (3.2.4)
211+
rexml (3.2.5)
212212
rspec-core (3.10.1)
213213
rspec-support (~> 3.10.0)
214214
rspec-expectations (3.10.1)
@@ -230,17 +230,17 @@ GEM
230230
rspec-support (3.10.2)
231231
rspec_junit_formatter (0.4.1)
232232
rspec-core (>= 2, < 4, != 2.12.0)
233-
rubocop (1.11.0)
233+
rubocop (1.14.0)
234234
parallel (~> 1.10)
235235
parser (>= 3.0.0.0)
236236
rainbow (>= 2.2.2, < 4.0)
237237
regexp_parser (>= 1.8, < 3.0)
238238
rexml
239-
rubocop-ast (>= 1.2.0, < 2.0)
239+
rubocop-ast (>= 1.5.0, < 2.0)
240240
ruby-progressbar (~> 1.7)
241241
unicode-display_width (>= 1.4.0, < 3.0)
242-
rubocop-ast (1.4.1)
243-
parser (>= 2.7.1.5)
242+
rubocop-ast (1.5.0)
243+
parser (>= 3.0.1.1)
244244
rubocop-performance (1.10.1)
245245
rubocop (>= 0.90.0, < 2.0)
246246
rubocop-ast (>= 0.4.0)
@@ -345,7 +345,7 @@ DEPENDENCIES
345345
rspec-rails
346346
rspec-retry
347347
rspec_junit_formatter
348-
rubocop
348+
rubocop (= 1.14.0)
349349
rubocop-performance
350350
rubocop-rspec
351351
sass-rails

0 commit comments

Comments
 (0)