File tree 7 files changed +27
-20
lines changed
generators/react_on_rails
7 files changed +27
-20
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ AllCops:
35
35
36
36
Naming/FileName :
37
37
Exclude :
38
- - ' Gemfile'
38
+ - ' **/Gemfile'
39
+ - ' **/Rakefile'
39
40
40
41
Layout/LineLength :
41
42
Max : 120
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ group :development, :test do
29
29
gem "pry-doc"
30
30
gem "pry-rails"
31
31
gem "pry-rescue"
32
- gem "rubocop", require: false
32
+ gem "rubocop", "1.14.0", require: false
33
33
gem "rubocop-performance", require: false
34
34
gem "rubocop-rspec", require: false
35
35
gem "scss_lint", require: false
Original file line number Diff line number Diff line change 3
3
# Rake will automatically load any *.rake files inside of the "rakelib" folder
4
4
# See rakelib/
5
5
6
- tasks = %w[ run_rspec lint ]
6
+ tasks = %w[ lint run_rspec ]
7
7
prepare_for_ci = %w[ node_package dummy_apps ]
8
8
9
9
if ENV [ "USE_COVERALLS" ] == "TRUE"
Original file line number Diff line number Diff line change @@ -73,11 +73,14 @@ ReactOnRails.configure do |config|
73
73
# If that file exists, React on Rails thinks that you'll use the rails/webpacker bin/webpack compiler.
74
74
config.build_production_command = "RAILS_ENV=production bin/webpack"
75
75
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`
77
77
# In this example, the module BuildProductionCommand would have a class method `call`.
78
78
# See bottom for an example of the BuildProductionCommand module.
79
79
# 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
+
81
84
# ###############################################################################
82
85
# ###############################################################################
83
86
# SERVER RENDERING OPTIONS
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ def print_helpful_message
132
132
# From https://github.com/rails/rails/blob/4c940b2dbfb457f67c6250b720f63501d74a45fd/railties/lib/rails/generators/rails/app/app_generator.rb
133
133
def app_name
134
134
@app_name ||= ( defined_app_const_base? ? defined_app_name : File . basename ( destination_root ) )
135
- . tr ( '\\' , "" ) . tr ( ". " , "_" )
135
+ . tr ( " \\ " , "" ) . tr ( ". " , "_" )
136
136
end
137
137
138
138
def defined_app_name
Original file line number Diff line number Diff line change @@ -54,15 +54,18 @@ def file(name)
54
54
end
55
55
56
56
def locale_files
57
+ # rubocop:disable Layout/IndentationWidth, Style/RedundantBegin
57
58
@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
65
66
end
67
+
68
+ # rubocop:enable Layout/IndentationWidth, Style/RedundantBegin
66
69
end
67
70
68
71
def i18n_dir
Original file line number Diff line number Diff line change 150
150
mini_portile2 (~> 2.5.0 )
151
151
racc (~> 1.4 )
152
152
parallel (1.20.1 )
153
- parser (3.0.0.0 )
153
+ parser (3.0.1.1 )
154
154
ast (~> 2.4.1 )
155
155
pry (0.13.1 )
156
156
coderay (~> 1.1 )
208
208
ffi (~> 1.0 )
209
209
rdoc (6.3.0 )
210
210
regexp_parser (2.1.1 )
211
- rexml (3.2.4 )
211
+ rexml (3.2.5 )
212
212
rspec-core (3.10.1 )
213
213
rspec-support (~> 3.10.0 )
214
214
rspec-expectations (3.10.1 )
@@ -230,17 +230,17 @@ GEM
230
230
rspec-support (3.10.2 )
231
231
rspec_junit_formatter (0.4.1 )
232
232
rspec-core (>= 2 , < 4 , != 2.12.0 )
233
- rubocop (1.11 .0 )
233
+ rubocop (1.14 .0 )
234
234
parallel (~> 1.10 )
235
235
parser (>= 3.0.0.0 )
236
236
rainbow (>= 2.2.2 , < 4.0 )
237
237
regexp_parser (>= 1.8 , < 3.0 )
238
238
rexml
239
- rubocop-ast (>= 1.2 .0 , < 2.0 )
239
+ rubocop-ast (>= 1.5 .0 , < 2.0 )
240
240
ruby-progressbar (~> 1.7 )
241
241
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 )
244
244
rubocop-performance (1.10.1 )
245
245
rubocop (>= 0.90.0 , < 2.0 )
246
246
rubocop-ast (>= 0.4.0 )
@@ -345,7 +345,7 @@ DEPENDENCIES
345
345
rspec-rails
346
346
rspec-retry
347
347
rspec_junit_formatter
348
- rubocop
348
+ rubocop ( = 1.14.0 )
349
349
rubocop-performance
350
350
rubocop-rspec
351
351
sass-rails
You can’t perform that action at this time.
0 commit comments