Space Upgrades - A browser game made in Rails
I have created a small browser game called Space Upgrades which is built in Rails and requires no database. Here you visit and get more new steps for playing games. In this article, you will find ...

19
Showcase
career on cyber security skills?
anyone help me to know about cyber security skills

1
General
Safely running custom User Ruby code (e.g. Shopify Scripts)
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 ...

3
Ruby
Can anyone point me in the direction of some good RSpec tutorials?
Go to tutorialspoint

4
Testing
What is the best way to learn React JS?
Pass one course and search for projects, practice is the best teacher

6
General
I'm feeling lost about learning JavaScript, HELP!
See what questions will you be asked on the interview and start learning from them.

11
Javascript
Docker rails assets:precompile
here is the Dockerfile
i setup the project with rails g new --main --database=postgresql --css=bootstrap
```
# Make sure it matches the Ruby version in .ruby-version and Gemfile
ARG RUBY_VERSION=3....

3
Rails
Turbo stream problem
Thank you for your reply...
I was under the impression that
```
broadcasts
```
would be enough. But that doesn't include create I guess.
ActionCable seems like a hassle to set up. Thought turbo...

3
Rails
How do i deploy rails 7 app on digital ocean with password
Hello my question is how can i deploy rails 7 app(api only) on digital ocean i have password not ssh key and my operating system is windows

1
Rails
How can I convert this code to raw SQL and use in rails?
```
@all_payments = PaymentDetail.joins(:project).order('payment_details.created_at desc')
.union(PaymentError.joins(:project).order('payment_errors.created_at desc'))
.order('created_at desc')...

2
Rails
Can anyone recommend an online SQL course that would benefit a Rails dev?

3
General
Facing a problem in setting up the web server in Rails.
The bin/rails server command launches a web server named Puma which comes bundled with Rails. You'll use this any time you want to access your application through a web browser.
With no further wo...

2
Rails
Paypal & Stripe
PayPal and Stripe are two of the most popular and well-known payment processing platforms. Both companies have similarities, but each platform is better suited for different business needs. While b...

13
Rails
How to download multiple files from s3 on fly?
To download an entire bucket to your local file system, use the AWS CLI sync command, passing it the s3 bucket as a source and a directory on your file system as a destination, e.g. aws s3 sync s3:...

9
Rails