Run `db/seeds.rb` from within Ruby
In a rails project, you can run the seeds programmatically from within Ruby. In my case, I used this to seed some configuration data before the test suite ran.
Rails.application.load_seed
https://api.rubyonrails.org/classes/ActiveRecord/Tasks/DatabaseTasks.html#method-i-load_seed
Tweet