Jarl Friis
Jarl Friis
Hi. I am using postgresql. Now I wanted to use unit_record to speed up my tests. However I realise that it fails with NoMethodError: undefined method `indexes' for #ActiveRecord::ConnectionAdapters::UnitRecordAdapter:0x7fa18f27ba90 It...
**High level description** When using `xinclude` on a non-existing file followed by an `xinclude` with a DOCTYPE declaration (from a non-existing DTD file) The warning text of the missing DTD...
According to https://docs.grails.org/latest/ref/Command%20Line/create-app.html the grails command `create-app` takes an optional flag `--features`, however there is no list of possible feature to give as argument to `--features`. It would make much...
Given an actual map like this: ```java Map actual = Map.of( "k1", Map.of( "k11", "v11", "k12", "v12"), "k2", List.of("v21", "v22"), "k3", "V3" ); ``` I wish/expect to make an assertion...
In section https://tutorials.railsapps.org/tutorials/rails3-bootstrap-devise-cancan#authentication there is an argument for `/config/initializers/devise.rb` to contain the following line ``` config.sign_out_via = Rails.env.test? ? :get : :delete ``` However commenting this line out does not...
Trying to use composer with Rails 6.0.0 complains with the misleading error message: ``` https://raw.github.com/RailsApps/rails-composer/master/composer.rb:279:in `apply': Rails 6.0.0 is not supported. Use Rails 4.1 or newer. (StandardError) ```
It seems like this project is not longer maintained. I suggest that the maintenance of the project is handed over to a new maintainer or update the README to emphasize...
### Steps to reproduce ```ruby # frozen_string_literal: true require "bundler/inline" gemfile(true) do source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem "rails", github: "rails/rails", branch: "main" gem "sqlite3" end require "active_record"...
For Ruby (or in general) it would be nice to be able to configure default options for `neat_generate`. That is, options that are used of no options argument is provided...