Yong Joseph Bakos

Results 56 comments of Yong Joseph Bakos

@PragTob Yes, a Rails app that exhibits this behavior is here: https://github.com/osu-cascades/ecotone-web/tree/simplecov-581 Steps to reproduce: 1. `git clone [email protected]:osu-cascades/ecotone-web.git` 2. `git checkout simplecov-581` 3. `rpec` 4. Notice that one coverage...

@ivanovv Thank you, but this doesn't seem to solve the described issue. Gemfile: ``` gem 'simplecov', require: false ``` rails_helper.rb: ``` require 'simplecov' # ... ``` .simplecov: ``` SimpleCov.start 'rails'...

See the description here: https://github.com/infertux/bashcov/commit/26177e0024bf89f01c6c2fd0dc603004dba03bb0

More context: "Explain how the UIApplicationMain function instantiates a UIApplication object, assigns the app delegate to the UIApplication object delegate property, begins the main event loop, and, if configured, loads...

Additional context: "warning indicating that although view controllers exist in the storyboard, the tab controller scene is unreachable because no initial view controller has been specified." Per warning: Unsupported Configuration:...

Summarizing this material, for Swift and modern iOS: https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/TheAppLifeCycle/TheAppLifeCycle.html

Adding to this. `rails new myapp -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb ` ``` Install esbuild run yarn add esbuild from "." yarn add v1.22.18 info No lockfile found. [1/4] 🔍 Resolving...

A little more... ``` ~/tmp/myapp$ npm run build > build > esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds ✘ [ERROR] Could not resolve "@hotwired/turbo-rails" app/javascript/application.js:2:7: 2 │ import "@hotwired/turbo-rails" ╵ ~~~~~~~~~~~~~~~~~~~~~~~ You...

Perhaps *acts_as_tenant* has a `before_destroy` callback that is not handling cases of throwing `:abort` ? https://api.rubyonrails.org/classes/ActiveRecord/Persistence.html#method-i-destroy-21

Some more information. I replicated this error surfaced by a system test in a unit test. Sooo... 1. Although my controller is `find`ing the School, (which is the tenant model...