Splines

Results 106 issues of Splines

After #802 is merged, we can try out [Stimulus](https://stimulus.hotwired.dev/) under the new Hotwire umbrella. See for example [this blog for dynamic nested forms with Rails and Stimulus](https://jonathanyeong.com/writing/rails-stimulus-dynamic-nested-form/). It sounds quite...

Rails now comes with a [very basic sessions generator](https://github.com/rails/rails/pull/52328). One can build upon that to set up your own authentification system as described in details in [this blog post](https://radanskoric.com/guest-articles/from-devise-to-rails-auth). We...

Currently, all team members use VSCode, but that doesn't always have to be the case. In principle, we don't want to enforce any code editor. If someone feels more productive...

I just found this great blog post titled [Best practices when writing a Dockerfile for a Ruby application](https://lipanski.com/posts/dockerfile-ruby-best-practices). It'd be great to go over it and adopt our setup in...

See the TODO notes in the `.config/.rubocop.yml` file.

Follow-up to #801 (which was tackled in #824). I originally followed the [Turbo Upgrade guide here](https://github.com/hotwired/turbo-rails/blob/main/UPGRADING.md#upgrading-from-rails-ujs--turbolinks-to-turbo). In the long run, we should try to get rid of Rails UJS entirely,...

Follow-up to #454. PRs should probably address this one package a time (depending on how much configuration changes are needed for each package replacement).

We now have a voucher system such that teachers cannot see the whole user database anymore. As risen as concern [in this comment](https://github.com/MaMpf-HD/mampf/pull/808#pullrequestreview-3013176176), we might want to force admins to...

At one point, MaMpf already made use of Prometheus but somehow that got into oblivion. Metrics can be very helpful in determining how fast our server responds and where there...

The RubyLSP Test Explorer offers the following [config option](https://shopify.github.io/ruby-lsp/test_explorer.html#test-explorer): ```json "rubyLsp.featureFlags": { "fullTestDiscovery": true } ``` However, when I **turn it on**, the rspec command is executed as following: ```...