What’s the best way to run scheduled tasks in a Rails environment? Script/runner? Rake? I would like to run the task every few minutes. 20 Answers 20
  • May 16, 2022
  • 0 Comments
What does bundle exec rake db:migrate mean? Or just bundle exec rake <command> in general? I understand that bundle takes care of maintaining things in the Gemfile. I know...
  • May 9, 2022
  • 0 Comments
I have a Rakefile that compiles the project in two ways, according to the global variable $build_type, which can be :debug or :release (the results go in separate directories):...
  • May 6, 2022
  • 0 Comments
I have a dev Ruby on Rails database full of data. I want to delete everything and rebuild the database. I’m thinking of using something like: rake db:recreate Is...
  • April 29, 2022
  • 0 Comments