Gabriel Arcangel Zayas

Results 93 issues of Gabriel Arcangel Zayas

Fixes #51. ``` pry(#)> "#{last["action"]} #{last["target"]}#{last["options"]}" + "\n" => "assert page.has_content? 'Foo was successfully created.' \n" ``` Since we're tagging on a new line at the end with a `+`,...

Context: https://github.com/bullet-train-co/magic_test/pull/46#issuecomment-1058832524 Since we have a good setup now that `bullet_train` has been separated into the starter repository and `bullet_train-core`, we could probably use those same tests to set things...

I saw #20, and I'm guessing what it means is we want to implement standard Ruby for the tests that are generated when running `flush`, etc. In the meantime, this...

Closes https://github.com/bullet-train-co/bullet_train/issues/1232 Joint PR - https://github.com/bullet-train-co/bullet_train/pull/1321 ``` rails generate super_scaffold Site Team name:text_field foo:slug ``` ![image](https://github.com/bullet-train-co/bullet_train-core/assets/10546292/191757f3-4bfc-434c-87f5-3e81f85fd2d6) ## TODO - [x] Fix a bug related to nil object when an error...

Closes #688. As a side note, I didn't add `#{Rails.root}` the following lines because it was throwing an error when trying to run migrations in the starter repository: https://github.com/bullet-train-co/bullet_train-core/blob/445b8e616199782d4de2de96b1e4e319656b08ff/bullet_train-roles/lib/models/role.rb#L7-L8 https://github.com/bullet-train-co/bullet_train-core/blob/445b8e616199782d4de2de96b1e4e319656b08ff/bullet_train-roles/test/dummy/config/application.rb#L34-L35...

These migrations can be found 1-for-1 in the starter repository, so I don't think we need them here in the core repository. I did not delete migrations for `bullet_train-outgoing_webhooks` because...

Closes #714. I also added `bullet_train-super_scaffolding` because we have the following lines in the Membership controller base: https://github.com/bullet-train-co/bullet_train-core/blob/dab52ad22c932a4c7003c8747ba1c668c39f2444/bullet_train/app/models/concerns/memberships/base.rb#L16-L17 I wanted to added `bullet_train-api` because of this line: https://github.com/bullet-train-co/bullet_train-core/blob/dab52ad22c932a4c7003c8747ba1c668c39f2444/bullet_train/app/controllers/concerns/account/users/controller_base.rb#L16 However, `bullet_train-api`...

Everything shows up fine on my Macbook, but the dropdown in Chrome specifically shows a white background with white text: ![showcase bug](https://github.com/bullet-train-co/showcase/assets/10546292/3585508a-65f1-418a-95d8-305d324b313e) It shows up normally on Firefox. As a...

Closes #80. I wanted to use `h-full` or `sc-h-full` for these, but it wasn't working as expected. I saw the fixed footer is rendered in https://github.com/bullet-train-co/bullet_train-core/blob/main/bullet_train-themes-light/app/views/showcase/engine/_head.html.erb, I'm curious if that...

``` bin/super-scaffold crud News::Article Team title:text_field bin/super-scaffold crud Client Team title:text_field bin/super-scaffold join-model Clients::NewsArticle news_article_id{class_name=News::Article} client_id{class_name=Client} bin/super-scaffold crud-field News::Article client_ids:super_select{class_name=Clients::NewsArticle} ``` This scaffolds the following to `client.rb`. ```ruby has_many :news_articles,...