Upgrading From Rails 2.0.2 to Current Version
Coming back to Rails after a long time and happy to have found GoRails. Have the fundamental constructs around activerecord and actioncontroller changed? Any suggestions on best approach to migra...

1
Rails
How do I test the order of elements on a rails app page with Rspec / Capybara?

2
Testing
I'm not sure what's the correct title for my question is. Read the content for more information.

4
General
How do i create a QR code lead authentication strategy
Hi all,
please visit the popular challenger bank https://web.tide.co/login/ for an example.
Their auth strategy is to present the user with a QR code that changes every 30 seconds (I'm sure thi...

3
Rails
Can a Rails app send messages through Signal Messenger?
One problem as I understand it is signal needs a phone number. It uses this for it's encryption protocol somehow, or so I've read.
I use the signal windows desktop app alot. My ROR app server is...

4
Rails
How do I
How do I can integrate python model in my ruby on rails web application.

1
General
Using Active Storage to upload images not working.
Hey guys,
I could really use your assistance with my current app. I decided to add the active storage feature and followed the guide on how to set it up. I did a practice project first to test the...

1
Rails
2factor Auth best practice, Please help
Thank you, Chris. I have watched the Gorails 2factor Auth tutorial. I have a couple of questions that leave me with a few questions.
- I imagine a scenario where a person has left their laptop open...

1
Rails
Heroku and Schedule Jobs
Hello!
I'm implementing a new feature in my app that e-mailing all users every first day of the month. My app is running in Heroku.
My question is: what is the best way to achieve this feature?
W...

1
Rails
Validation error not showing up in browser
articles controller
class ArticlesController < ApplicationController
def show
@article = Article.find(params[:id])
end
def index
@articles = Article.all
end
...

1
Rails