-
Notifications
You must be signed in to change notification settings - Fork 21.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add script folder and generator #52335
Conversation
ef11c0d
to
d60ed64
Compare
Add a new script default folder to hold one-off or general purpose scripts, such as data migration scripts, cleanup scripts, etc. Also add a script generator to create such scripts. Co-authored-by: Haroon Ahmed <haroon.ahmed25@gmail.com>
d60ed64
to
3632fd5
Compare
This is great. The generator doesn't add much, but it helps explain the feature, and it does help with the require. Nice. |
Add a new script default folder to hold one-off or general purpose scripts, such as data migration scripts, cleanup scripts, etc. Also add a script generator to create such scripts. Co-authored-by: Haroon Ahmed <haroon.ahmed25@gmail.com>
Add a new script default folder to hold one-off or general purpose scripts, such as data migration scripts, cleanup scripts, etc. Also add a script generator to create such scripts. Co-authored-by: Haroon Ahmed <haroon.ahmed25@gmail.com>
Add a new script default folder to hold one-off or general purpose scripts, such as data migration scripts, cleanup scripts, etc. Also add a script generator to create such scripts. Co-authored-by: Haroon Ahmed <haroon.ahmed25@gmail.com>
script/my_script.rb | ||
|
||
You can run the script using: | ||
`ruby script/my_script.rb` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could it be valuable to encourage users to execute the script with the rails runner command so that the script itself has access to Rails classes (like the ones in app/models
)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While the generated require_relative "../config/environment"
does the trick and allows the script to access Rails classes using just ruby
, it adds friction to moving the script around. Using rails runner
would do that for free.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@seanpdoyle The generator creates a script that has require_relative "../config/environment"
, so you can run the script with ruby
and it will work the same as if you ran it with rails runner
.
But this is a very basic generator, you don't have to use it! You can manually create a script without require_relative "../config/environment"
and run it with rails runner
if you prefer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@seanpdoyle The generator creates a script that has
require_relative "../config/environment"
, so you can run the script withruby
and it will work the same as if you ran it withrails runner
.
Thanks for clarifying @jeromedalbert, I wasn't clear until I read your comment and tried the generator whether the scripts were living in Ruby or in my Rails project
Hi, I'm the author of the original discussion. I'm sorry that I've been absent from this topic for so long, and I'm so happy to see it's implemented finally, thank you! |
I know I'm late, and that this has already been merged, but aren't rake tasks one off scripts? At least that is what I use them for. The scripts described here seem to be exactly what rake tasks are. If not, what is the difference? |
Hey @joelmoss, I think there can be some overlap between rake tasks and one-off scripts and opinions may vary. In the related discussion Okura Masafumi mentions that rake tasks are one way but they can be executed multiple times, and I tend to agree, leaving rake tasks for code that is intended to be run multiple times. So But |
Add a new script default folder to hold one-off or general purpose scripts, such as data migration scripts, cleanup scripts, etc. Also add a script generator to create such scripts. Co-authored-by: Haroon Ahmed <haroon.ahmed25@gmail.com>
Verify `script/` directory creation in api app generator test #52335
# By Jean Boussier (270) and others # Via GitHub (1669) and others * main: (2541 commits) ActiveSupport::Cache::RedisCacheStore use UNLINK instead of DEL Fix typo in The Rails Command Line guide Fixed-width == and === docs do not work with RDoc short-hand Add `default_isolation_level` on `NullPool` [ActiveRecord] Introduce with_default_isolation_level Use status code 303 for redirect in destroy action Add `Cache#read_counter` and `Cache#write_counter` misc: fix spelling in Markdown and Ruby files [ci skip] docs(activestorage): Update default variant processor Generate deploy config without extra blank lines Extract system test setup to system_helper Include cookie name in length calculation Verify `script/` directory creation in api app generator test rails#52335 Add `must-understand` directive according Fix typo in Action Controller Overview guide Ensure function aliases allow retrying queries Enable join table references to stay retryable Fix rails#54805. Add a config.action_controller.json_renderer_escapes framework default Don't always escape JSON when calling render json: ... # Conflicts: # activerecord/CHANGELOG.md # activerecord/lib/active_record/autosave_association.rb
New attempt at addressing this discussion after #39552 fell through the cracks.
Motivation / Background
This Pull Request has been created because it is currently not clear where to put one-off scripts, and DHH has expressed support for bringing back
script/
as a default directory.Detail
This Pull Request changes the Rails app generator to create a new script default directory that can hold one-off scripts, data migration scripts, cleanup scripts, benchmark scripts, etc. This PR also adds a basic script generator to create such scripts.
Additional information
I added a script generator to this PR because:
I can remove the generator from this PR if it is not deemed useful. Conversely, I can keep the generator and remove the default empty script folder if only a generator is preferred.
I think most people are interested in ruby scripts so I didn't add an option to generate bash scripts, but I can add one if needed.
PR 39552 didn't go through and @hahmed expressed interest in someone else taking over, so we will see if this PR gets better luck.
Checklist
Before submitting the PR make sure the following are checked:
[Fix #issue-number]