Skip to content
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

Merged
merged 1 commit into from
Jul 16, 2024
Merged

Add script folder and generator #52335

merged 1 commit into from
Jul 16, 2024

Conversation

jeromedalbert
Copy link
Contributor

@jeromedalbert jeromedalbert commented Jul 15, 2024

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:

    • there seemed to be some support for it.
    • a new script directory and/or a generator seem to go hand in hand.
    • only adding a script directory with a small mention in the Getting Started guide feels a little bare. It is a good start (since it is not clear where else it could be documented in the guides), but adding a new generator can be an additional indirect way to document how this new directory can be used.

    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:

  • This Pull Request is related to one change. Unrelated changes should be opened in separate PRs.
  • Commit message has a detailed description of what changed and why. If this PR fixes a related issue include it in the commit message. Ex: [Fix #issue-number]
  • Tests are added or updated if you fix a bug or add a feature.
  • CHANGELOG files are updated for the changed libraries if there is a behavior change or additional feature. Minor bug fixes and documentation changes should not be included.

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>
@dhh
Copy link
Member

dhh commented Jul 16, 2024

This is great. The generator doesn't add much, but it helps explain the feature, and it does help with the require. Nice.

@dhh dhh merged commit c01a846 into rails:main Jul 16, 2024
3 checks passed
@jeromedalbert jeromedalbert deleted the script-folder branch July 16, 2024 17:40
Schwad pushed a commit to Shopify/rails that referenced this pull request Jul 18, 2024
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>
Schwad pushed a commit to Shopify/rails that referenced this pull request Jul 18, 2024
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>
Schwad pushed a commit to Shopify/rails that referenced this pull request Jul 18, 2024
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`
Copy link
Contributor

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)?

Copy link
Contributor

@neilvcarvalho neilvcarvalho Jul 19, 2024

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.

Copy link
Contributor Author

@jeromedalbert jeromedalbert Jul 19, 2024

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.

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.

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

@okuramasafumi
Copy link
Contributor

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!

@joelmoss
Copy link

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?

@jeromedalbert
Copy link
Contributor Author

jeromedalbert commented Jul 20, 2024

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 script/ can hold one-off scripts, for example Basecamp uses script/migrate which I am guessing they use for updating data, and we had a similar folder at my previous company.

But script/ is not only for one-off scripts, it can hold more general scripts too, for example rails generate benchmark already generates benchmarks in script/benchmarks, and at my previous company we had script/ops which had a bunch of shell scripts and ruby scripts for various ops-related things.

DanielaVelasquez pushed a commit to DanielaVelasquez/rails that referenced this pull request Oct 3, 2024
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>
kakudou3 added a commit to kakudou3/rails that referenced this pull request Mar 29, 2025
yahonda added a commit that referenced this pull request Mar 31, 2025
Verify `script/` directory creation in api app generator test #52335
malomalo added a commit to malomalo/rails that referenced this pull request Apr 3, 2025
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants