Andrei Lisnic
Andrei Lisnic
From my debugging, I found out that for some reason, Some Meteor errors have stack nested `{ stack: { stack: "" }}`:
Most methods are missing return types. Type information is something that needs to be solved somehow. The simplest fix right now is to add types to https://github.com/iftheshoefritz/solargraph-rails/blob/main/lib/solargraph/rails/types.yml. But I'm not...
Interesting 🤔 I didn’t know it was working before. Maybe return type needs to be adjusted
@jaredcwhite please do a pull from master so that CI runs properly
@iftheshoefritz new solargraph-rails code has catches for each of its modules so this should be a problem
@boardfish this now can be easily implemented. Take a look at https://github.com/iftheshoefritz/solargraph-rails/blob/main/lib/solargraph/rails/delegate.rb as an example. Its test should be more telling https://github.com/iftheshoefritz/solargraph-rails/blob/main/spec/solargraph-rails/delegate_spec.rb
> "install Rails 5/6/7" steps is > wiped out maybe let's try to run integration tests for a specific version only? try installing gems only for rails5 and run spec/rails5_spec.rb...
First possible cause from my testing - `ruby@setup-ruby@v1` step saves gems to `vendor/bundle` in project root (which when we test locally is not the case), but we install gems in...
I wasn't able to fix this from my testing, but I think the problem is 100% in vendored bundler path. @iftheshoefritz to speed up your testing, I recommend you use...
@iftheshoefritz I was able to fix the builds in https://github.com/iftheshoefritz/solargraph-rails/pull/46, please take a look