How do I build a multi step wizard in ruby with StimulusJS

6
Ruby
Hi GoRails, I would like to make a multistep wizard in ruby on rails without making use of the wicked gem. Just stimulusJS and ruby :) Could you make a tutorial about that? Thanks in advance!
Fatih replied
Solved

How to work with nested methods correctly

2
Ruby
I am trying to figure out how to pass parent arguments to child arguments of a nested method block so I would like to do something like ```ruby namespace "top" do namespace "middle" do names...
Freibuis replied

How I setup sqlite3 on Ruby on windows

2
Ruby
I installed sqlite3 in my system when I run sqlite3 --version this appears: 3.37.0 2021-11-27 14:13:22 bd41822c7424d393a30e92ff6cb254d25c26769889c1499a18a0b9339f5d6c8a But when I try run the serve...

Is there any gem to transform pdf files to html?

2
Ruby
i need to convert a pdf file to html or some way to edit an existing pdf

How to count comments like reddit (infinite nested model) ?

2
Ruby
Hey Chris, I have an `item` model which gets submitted. With `has_many :comments, as: :commentable, dependent: :destroy` then in the `comment` model I have `belongs_to :commentable, polymorphic...
Solved

Best way to relate models on Jumpstart Pro

1
Ruby
Whats the best way to relate models? Im building a real estate app with Jumpstart Pro and would like to add property owners (contact/users) to the a property, so on the show page of a property I ca...
Oliver Sawtell replied

Devise Masquerade + Multitenant with act_as_tenant

1
Ruby
I am running a multitenant app with users and administrators scoped to their own account / domain (act_as_tenant). My use case is the following : I have a superAdmin model who has access to a supe...

how can i pass mailer_name into a method using noticed gem

0
Ruby
us = User.first email = EmailDetail.find_by_name("Welcome User Email") UserNotification.with(email_class: "UserMailer" , email: email.function_name).deliver(us) i am trying to pass maile...
zunaira ihsan posted

MongoDb Integration

0
Ruby
It would be great if you can make video on MongoDB use in rails and make application like url-shortener with it

How to do a time comparison in Ruby

0
Ruby

How to install rails cms template?

0
Ruby
I am using ruby2.5.1 and rails 5.0.6 now. I am going to install camaleon_cms on my project. How to install it? Please help me....

How do I learn to write dry code?

1
Ruby
I've been learning RoR for a year now and have a basic functioning site that people actually use, but my code is not even close to dry... it's probably wetter than the Amazon! Once you have the bas...

How can compound csv file datas in ruby on rails oop

0
Ruby
https://stackoverflow.com/questions/68876726/how-can-compound-csv-file-datas-in-ruby-on-rails-oop
Alper Efe Şahin posted

Using the rails app to send SMS

1
Ruby
Using Ruby on Rails, I am developing a medication reminder system that will be deployed on Heroku. A doctor can enter a patient's medication information, including the medication name, dosage, and...
Jamesacc56 replied

"Logged in as" message not appearing in Rails for beginners part 15

0
Ruby
Hello, In the "Rails for Beginners" part 15 video, I can't manage to get the "Logged in as" message to print out on the page.. I tried everything I knew, and it seems that a few other people are ha...
fabrice1236 posted

Safely running custom User Ruby code (e.g. Shopify Scripts)

2
Ruby
Hello everyone! Nervous first-time poster here, and of course, my apologies if there's already a video / thread that covers this. An advanced topic I'd love to see covered on GoRails (or hear any ...
Keegan Bakker replied

What is a good platform to hire Ruby developers from?

1
Ruby
I want to hire a remote developer to help me with my project. Does anyone knows a platform or job board to hire developers from?
Optymize replied

Modified Cyclomatic Complexity

1
Ruby
Do you know of a tool that does modified cyclomatic complexity analysis of Ruby code? Lizard does not do it correctly for Ruby, and I could not find a modified option on Rubocop.
Solved