7
7
require "pathname"
8
8
require "digest"
9
9
require "time"
10
+ require "prism"
11
+ require "ruby_lsp/listeners/rails_app"
10
12
11
13
# This file is a script that will configure a custom bundle for the Ruby LSP. The custom bundle allows developers to use
12
14
# the Ruby LSP without including the gem in their application's Gemfile while at the same time giving us access to the
@@ -50,6 +52,7 @@ def initialize(project_path, **options)
50
52
@last_updated_path = T . let ( @custom_dir + "last_updated" , Pathname )
51
53
52
54
@dependencies = T . let ( load_dependencies , T ::Hash [ String , T . untyped ] )
55
+ @rails_app = T . let ( rails_app? , T ::Boolean )
53
56
@retry = T . let ( false , T ::Boolean )
54
57
end
55
58
@@ -62,7 +65,7 @@ def setup!
62
65
# Do not set up a custom bundle if LSP dependencies are already in the Gemfile
63
66
if @dependencies [ "ruby-lsp" ] &&
64
67
@dependencies [ "debug" ] &&
65
- ( @dependencies [ "rails" ] ? @dependencies [ "ruby-lsp-rails" ] : true )
68
+ ( @rails_app ? @dependencies [ "ruby-lsp-rails" ] : true )
66
69
$stderr. puts (
67
70
"Ruby LSP> Skipping custom bundle setup since LSP dependencies are already in #{ @gemfile } " ,
68
71
)
@@ -148,7 +151,7 @@ def write_custom_gemfile
148
151
parts << 'gem "debug", require: false, group: :development, platforms: :mri'
149
152
end
150
153
151
- if @dependencies [ "rails" ] && !@dependencies [ "ruby-lsp-rails" ]
154
+ if @rails_app && !@dependencies [ "ruby-lsp-rails" ]
152
155
parts << 'gem "ruby-lsp-rails", require: false, group: :development'
153
156
end
154
157
@@ -209,7 +212,7 @@ def run_bundle_install(bundle_gemfile = @gemfile)
209
212
command << " && bundle update "
210
213
command << "ruby-lsp " unless @dependencies [ "ruby-lsp" ]
211
214
command << "debug " unless @dependencies [ "debug" ]
212
- command << "ruby-lsp-rails " if @dependencies [ "rails" ] && !@dependencies [ "ruby-lsp-rails" ]
215
+ command << "ruby-lsp-rails " if @rails_app && !@dependencies [ "ruby-lsp-rails" ]
213
216
command << "--pre" if @experimental
214
217
command . delete_suffix! ( " " )
215
218
command << ")"
@@ -244,7 +247,7 @@ def run_bundle_install(bundle_gemfile = @gemfile)
244
247
def should_bundle_update?
245
248
# If `ruby-lsp`, `ruby-lsp-rails` and `debug` are in the Gemfile, then we shouldn't try to upgrade them or else it
246
249
# will produce version control changes
247
- if @dependencies [ "rails" ]
250
+ if @rails_app
248
251
return false if @dependencies . values_at ( "ruby-lsp" , "ruby-lsp-rails" , "debug" ) . all?
249
252
250
253
# If the custom lockfile doesn't include `ruby-lsp`, `ruby-lsp-rails` or `debug`, we need to run bundle install
@@ -280,5 +283,27 @@ def correct_relative_remote_paths
280
283
281
284
@custom_lockfile . write ( content )
282
285
end
286
+
287
+ # Detects if the project is a Rails app by looking if the superclass of the main class is `Rails::Application`
288
+ sig { returns ( T ::Boolean ) }
289
+ def rails_app?
290
+ config = rails_app_config
291
+ return false unless config
292
+
293
+ result = Prism . parse ( config )
294
+ return false unless result
295
+
296
+ dispatcher = Prism ::Dispatcher . new
297
+ listener = Listeners ::RailsApp . new ( dispatcher )
298
+ dispatcher . dispatch ( result . value )
299
+
300
+ listener . rails_app
301
+ end
302
+
303
+ sig { returns ( T . nilable ( String ) ) }
304
+ def rails_app_config
305
+ config = Pathname . new ( "config/application.rb" ) . expand_path ( Dir . pwd )
306
+ config . read if config . exist?
307
+ end
283
308
end
284
309
end
0 commit comments