Skip to main content

All Questions

-1 votes
0 answers
16 views

Ruby (3.3.4) and Rails (7.1) - rails s Zeitwerk - uninitialized constant Utils::ScriptsUtils::Utils (NameError)

I am trying to update my ruby app from ruby 2.6.6 to ruby 3.3.4 and Rail 5.1 to Rails 7.1 I know it is not a good practice to do so, but in my case (which is a bit complicated) I felt I didn't have ...
bseido's user avatar
  • 9
1 vote
0 answers
30 views

Rails 7.1 Turbo stream not working on localhost, but works when deployed to Heroku

I have a very simple Rails 7.1.3.4 app that is essentially a dashboard, where it uses Turbo Streams to display model attributes in real-time. When I deploy my app to Heroku, everything works as ...
dizzy33's user avatar
  • 11
0 votes
0 answers
25 views

localhost:3000 not working when I start a docker container for my Rails project

I was following a tutorial on how to Dockerize a brand new Rails 7 app. I made the Docker container 'distant-mirror' Setting up the Docker container took about two hours, but now I entered in my ...
Noop Noop's user avatar
0 votes
0 answers
47 views

How to delete cookies in Rails 7.1?

I recently upgraded my Rails app from version 7.0.4.3 to version 7.1.3.4 and cookies.delete stopped working. I'm setting a cookie in JavaScript with: document.cookie = `last_guess=value; path=/`; ...
ptrlaszlo's user avatar
  • 337
1 vote
0 answers
33 views

Failed to resolve module specifier "application" .Unable to load the application.js file in rails engine

Uncaught TypeError: Failed to resolve module specifier "application". Relative references must start with either "/", "./", or "../". In rails 7 while creating ...
Dev Gupta's user avatar
1 vote
1 answer
81 views

ActiveRecord::NotNullViolation: RuntimeError: NOT NULL constraint failed: drives.created_at

I am using latest ruby 3.3.3 and latest rails 7.1.3.4. I am new to rails and I am learning it. Sorry if my request seems dumb to some. I got this error when I run tests. It seems that ActiveRecord is ...
Ghassen Rjab's user avatar
0 votes
1 answer
72 views

Rails 7: Psql trying to connect to the wrong database but trying to create correct database

In production mode, I am testing connecting a rails 7 project to a remote server for the postgresql database. However when I try to connect to it, it starts looking to connect to the postgres database ...
Ese10's user avatar
  • 19
0 votes
0 answers
35 views

How do you make Javascript work in rails engine?

I have added these gems in Gemfile gem "sprockets-rails" gem "importmap-rails" gem 'stimulus-rails', '~> 1.2', '>= 1.2.1' gem 'hotwire-rails', '~> 0.1.0' gem 'turbo-rails',...
Krapi Rastogi's user avatar
1 vote
1 answer
82 views

Paste multi lines in Rails console with pry

Problem: I cannot paste multi-line code as pry tries to execute every line. Expected behavior: [1] pry(main)> %w[a b c] .map(&:to_sym) => [:a, :b, :c] [2] pry(main)> Actual behavior: [1] ...
Alexey Zalyotov's user avatar
2 votes
1 answer
71 views

Why would `has_secure_password` suppress password validation on update, but only if the object is newly created?

Let's say I have a simple model like so with a presence validation on the password field. class User < ApplicationRecord validates :password, presence: true end If I try to update the password ...
Schwern's user avatar
  • 161k
0 votes
0 answers
51 views

Debugging tailwindcss:watch in Procfile.dev in Docker

I am trying to build a development compose.yaml to mimic what I hope to be my production deployment. Currently it looks like the following using bin/dev. services: web: build: context: ./ ...
GSP's user avatar
  • 3,777
0 votes
0 answers
76 views

Use custom fonts Rails 7 with jsbundling (esbuild)

How to properly use custom fonts in Rails 7 with jsbundling? I'm trying to use Fontawesome-Free and Font Lora, but I'm getting a loader error. 13:46:30 web.1 | ActionController::RoutingError (No ...
Dmitry Tolstosheev's user avatar
1 vote
1 answer
51 views

Rails 7.1 Stack level too deep in partials and simpleform

After upgrading our rails stack from 7.0 to 7.1 i noticed these weird errors of stack level too deep even without much of a stack trace. It happens as far as i noticed, only whenever i have a simple ...
Nicholas Ladefoged's user avatar
1 vote
1 answer
26 views

Sprockets::Rails::Helper::AssetNotPrecompiledError in MyEngine::Frontend#new

Asset hero_banner.jpg was not declared to be precompiled in production. Declare links to your assets in app/assets/config/manifest.js. //= link hero_banner.jpg Rails.application.config.assets.paths &...
Krapi Rastogi's user avatar
1 vote
2 answers
77 views

error trying to import module pinned in import map

I have a rails 7 app and I'm trying to add hotwire functionality. I am getting an error with pinning stimulus and importing it in application.js importmap.rb pin "application" pin "@...
Fred Willmore's user avatar

15 30 50 per page
1
2 3 4 5
65