S
S
https://github.com/matestack/matestack-ui-core/issues/598
would be nice if matestack would support rails view tags by default ```ruby def response div do content_tag :div, class: 'bg-blue-500' do link_to root_path do image_tag 'logo.png' end end form_with...
Hey, I'm going to build gem(rails engine), something like active-admin, but with matestack. I've made a repo below with the boilerplate you need for an engine to work with matestack....
Here is my capyabra integration with parallel specs: it should work out of the box, maybe it's useful for others ```ruby test_env_number = ENV["TEST_ENV_NUMBER"].to_i Capybara.server_port = 9887 + test_env_number Capybara.register_driver...
Hey, do you want some help setting up anycable to be included in hyperstack? Hopefully, it will improve performance by default since it uses websockets https://github.com/anycable/anycable
Is there currently a way to use npm packages. I've even tried to run it using backticks ```ruby require 'nodejs' ` const express = require('express') const app = express() const...
The assets are loaded from /assets instead of the baseUrl + /assets. If baseUrl is prepended, it returns 404
I'm using ember-cli-mocha, I don't know why I cannot see the tests running in the browser using `docker-compose run frontend ember test --server` Also tried to pass the host option...
Hey, I'll leave it here, might be useful for others. For unit tests, `parallel_tests` are faster. Maybe because I use it with `spring-commands-parallel-tests` spring to run them. Anyway, Paraspec is...
is there a cleaner way to inject dependencies for rails models/controllers ? i tried `@@dependency = CONTAINER.lookup(:dependency)` but it feels hacky and it's hard to mock them