Skip to content

Commit

Permalink
Update Thor link [ci-skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanhefner committed May 18, 2023
1 parent 254af8e commit e1f43ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/generators.md
Expand Up @@ -40,7 +40,7 @@ $ bin/rails generate helper --help
Creating Your First Generator
-----------------------------

Since Rails 3.0, generators are built on top of [Thor](https://github.com/erikhuda/thor). Thor provides powerful options for parsing and a great API for manipulating files. For instance, let's build a generator that creates an initializer file named `initializer.rb` inside `config/initializers`.
Since Rails 3.0, generators are built on top of [Thor](https://github.com/rails/thor). Thor provides powerful options for parsing and a great API for manipulating files. For instance, let's build a generator that creates an initializer file named `initializer.rb` inside `config/initializers`.

The first step is to create a file at `lib/generators/initializer_generator.rb` with the following content:

Expand Down

0 comments on commit e1f43ac

Please sign in to comment.