Gabriel Arcangel Zayas

Results 77 issues of Gabriel Arcangel Zayas

Joint PR - https://github.com/bullet-train-co/bullet_train-core/pull/209 Since there were changes to the `--sidebar` flag in the joint PR, I updated the tests here so everything passes.

We have a `BulletTrain::Configuration` class, but we don't implement it in any of our initializers, so I added one here. Joint PR: - https://github.com/bullet-train-co/bullet_train-core/pull/208

Closes #702 This script was written around the time of the Great Unbundling, and I believe it was actually before `bin/resolve` was made, so I don't think we need this...

Here are the tests for this pull request - https://github.com/bullet-train-co/bullet_train-core/pull/182 I deleted some of the assertions because we deleted the following over in there: ```ruby if local_time(timestamp).to_date == local_time(Time.now).to_date "Today...

Pretty straightforward, I just added tests for https://github.com/bullet-train-co/bullet_train-core/pull/113.

I don't really want to have this line here long term, but if developers update the starter repository before updating core, they'll get this error: ``` > rake db:migrate rake...

Joint PR - https://github.com/bullet-train-co/bullet_train-api/pull/45 The test for making sure applications are created when accessing `/testing/provision`: https://github.com/bullet-train-co/bullet_train-api/issues/42

Details in main PR: - https://github.com/bullet-train-co/bullet_train-base/pull/127 Joint PR - https://github.com/bullet-train-co/bullet_train-api/pull/34

Say for instance we Super Scaffold the following. ``` > rails g model Foo team:references name:string foo:string > bin/super-scaffold crud Foo Team name:text_field foo:text_field ``` Both attributes show will show...

Context: https://discord.com/channels/836637622432170028/836637623048601633/1070039125249495120 We override the Doorkeeper layout in the following in `config/application.rb`: ```ruby config.prepare_to do Doorkeeper::ApplicationController.layout "devise" ... end ``` According to [the docs](https://github.com/doorkeeper-gem/doorkeeper/wiki/Customizing-views#overriding-layouts), this is the right way to...