Skip to content

Commit d462fb5

Browse files
Update builder doc links to point to the rails repo [ci skip]
After reviewing the Action View Overview guide, a discussion started around the builder gem that was detailed in the guide. We decided to move it to the rails/ umbrella so we can help maintain it as needed, since the framework uses/documents it, keeping it similar to jbuilder. rails#51435 (comment)
1 parent 7db95ce commit d462fb5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

actionview/lib/action_view/base.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ module ActionView # :nodoc:
153153
# end
154154
# end
155155
#
156-
# For more information on Builder please consult the {source
157-
# code}[https://github.com/jimweirich/builder].
156+
# For more information on Builder please consult the {source code}[https://github.com/rails/builder].
158157
class Base
159158
include Helpers, ::ERB::Util, Context
160159

guides/source/action_view_overview.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ has a `.erb` extension, it uses embedded Ruby to build an HTML response. If the
8686
template has a `.jbuilder` extension, it uses the
8787
[Jbuilder](https://github.com/rails/jbuilder) gem to build a JSON response. And
8888
a template with a `.builder` extension uses the
89-
[`Builder::XmlMarkup`](https://github.com/jimweirich/builder) library to build
90-
an XML response.
89+
[`Builder::XmlMarkup`](https://github.com/rails/builder) library to build an XML
90+
response.
9191

9292
Rails uses the file extension to distinguish among multiple template systems.
9393
For example, an HTML file using the ERB template system will have `.html.erb` as
@@ -213,8 +213,7 @@ would produce something like:
213213
</div>
214214
```
215215

216-
See [Builder documentation](https://github.com/jimweirich/builder) for more
217-
examples.
216+
See [Builder documentation](https://github.com/rails/builder) for more examples.
218217

219218
### Template Compilation
220219

0 commit comments

Comments
 (0)