Skip to content

Commit

Permalink
Merge pull request #363 from andresakata/main
Browse files Browse the repository at this point in the history
Fix broken links to ruby-docs.org replacing them with the official docs
  • Loading branch information
hsbt authored Apr 16, 2024
2 parents 07cfff0 + bb10420 commit 254de16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gems-with-extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ Further Reading
and [part 2](http://tenderlovemaking.com/2010/12/11/writing-ruby-c-extensions-part-2.html))
by Aaron Patterson
* Interfaces to C libraries can be written using ruby and
[fiddle](https://ruby-doc.org/stdlib/libdoc/fiddle/rdoc/Fiddle.html) (part
[fiddle](https://docs.ruby-lang.org/en/master/Fiddle.html) (part
of the standard library) or [ruby-ffi](https://github.com/ffi/ffi)
* [Extending Ruby](http://ruby-doc.com/docs/ProgrammingRuby/html/ext_ruby.html)
is a [Programming Ruby](http://docs.ruby-doc.com/docs/ProgrammingRuby/)
Expand Down
4 changes: 2 additions & 2 deletions patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ For example, let's say we have a `foo` gem with the following structure:
This might seem harmless since your custom `erb` and `set` files are within
your gem. However, this is not harmless, anyone who requires this gem will not
be able to bring in the
[ERB](http://ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB.html) or
[Set](http://www.ruby-doc.org/stdlib/libdoc/set/rdoc/classes/Set.html) classes
[ERB](https://docs.ruby-lang.org/en/master/ERB.html) or
[Set](https://docs.ruby-lang.org/en/master/Set.html) classes
provided by Ruby's standard library.

The best way to get around this is to keep files in a different directory
Expand Down

0 comments on commit 254de16

Please sign in to comment.