Can Jumpstart initialize with RSpec instead of minitest?
They test Jumpstart's functionality. You're free to recreate them in rspec too.
If you want everything that's built with your favorite tools, Jumpstart Pro is not the template for you. Jumpstart P...

4
General
Help with Modelling the Rails DB/ActiveRecord
I want to have a data structure as follows;
Items Category contains general information on that category whether it can be taken on a flight.
Items contain more specialized information on the i...

1
General
How do I create a duplicate with associations included?
hi, it's really helpful. i also have a case like this, its a quotation and invoice.
does the steps, also copy the association or just the id and refer it to the tasks from previous project?
thanks.

9
Rails
how do i debug
Yes, you should read this part of the RoR's guide: https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-web-console-gem

2
Rails
Trix editor is not displaying properly in Rails 6
Thank you Drew for your response. I did update webpacker, but the error persists.

4
Rails
How to prevent missing images or assets after deployment in rails
I'm building a website as side project with a friend. Ngnix + Rails in docker.
After deployment, I usually do assets:clobber and assets:precompile. This changes the name of the assets.
When I...

1
Rails
How would I go about building a price-comparison engine with Rails
Hey guys,
I just started a project (based off of Jumpstart Pro). One of its core features should be a price comparison: I'd like the app to fetch prices across different websites/webshops severa...

1
Rails
Using mail_form gem and Sendgrid - having an issue
I was experiencing something similar after following a mail_form tutorial. In my case, the email wasn't being sent through due to DMARC and spam prevention practices from Sendgrid (and settings I s...

2
Rails
How do I find a Rails mentor?
Hi Daniel,
I've 35+ years of software engineering experience and long time with rails.
The last 15 years where mainly architecting software.
Please contact me by private mail to vandeputp@gmail.com...

3
Rails
How do I properly Shallow nest while doing a Many to Many association?
I have tried doing something like this, but it kind messes things up. Between the shallow part and some of the controller/views parts I am lost.
resources :projects, shallow: true do
resources ...

2
Rails
Help with Rails Application in Apache
I need help with getting a rails application working with
Apache.
I have the following virtual host configuration
ServerName concerto
DocumentRoot /usr/share/concerto/public
...

1
Rails
[AskJS] Are there Babel plugins that optimize code for special use cases?
I really, really don't like the idea of modifying the iterator prototype for these cases. And honestly I don't think they are really necessary. Yes, map, filter etc. should return the type they are...

4
General
How do I do the following in a better way?
You could build the conditions first then use them in the query:
```
conditions = { category: params[:category] }
conditions[:author_id] = author.id if author
Article.find(:all, conditions: conditi...

3
Tips
Would love an episode on setting up AnyCable on Heroku
Looks like you need a separate heroku app with shared databases and environment vars.

3
Servers
Need help setting up development environment for an project named Noticed (Open source)
I said that and decided to look at the Pay gem and think I figured it out.
The Rakefile in that gem loads the Rakefile from the dummy app. That makes total sense.
```ruby
APP_RAKEFILE = File.expan...

3
Rails
Running only a part of a huge (2000+) specs suite
In addition to what Axel wrote earlier, you could also add a `focus`-tag to specific cases, should you only want to test them individually. It works like so:
```
# specs/discount_checkout_spec.rb
...

3
Testing
Is fast_jsonapi still recommended with last commit being 2018?
Is fast_jsonapi still a better option versus jbuilder? Looks like there's another one called jsonapi-serializer that's a fork of fast_jsonapi.

1
General
Hou I can add a face recognition in my rails app ?
I have one app where i have a scaffold with a register of peoples with photo, but for me search if the people have your datas registered in my system i need use face recognition for read face in we...

1
General