Skip to content

Commit

Permalink
Use https in links to guides.rubygems.org (#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnir authored Jan 2, 2023
1 parent b57ef44 commit b220f03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/guides/gemfile.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<code>~> 2.1</code> is identical to <code>>= 2.1</code> and <code>< 3.0</code>.
<code>~> 2.2.beta</code> will match prerelease versions like <code>2.2.beta.12</code>.
<code>~> 0</code> is identical to <code>>= 0.0</code> and <code>< 1.0</code>.
= link_to 'RubyGems version specifiers', 'http://guides.rubygems.org/patterns/#pessimistic-version-constraint', class: 'btn btn-primary'
= link_to 'RubyGems version specifiers', 'https://guides.rubygems.org/patterns/#pessimistic-version-constraint', class: 'btn btn-primary'

.bullet
.description
Expand Down
2 changes: 1 addition & 1 deletion source/guides/gemfile_ruby.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
:code
# lang: ruby
ruby '~> 2.3.0'
= link_to 'Learn More: Version Operators', 'http://guides.rubygems.org/patterns/#declaring-dependencies', class: 'btn btn-primary'
= link_to 'Learn More: Version Operators', 'https://guides.rubygems.org/patterns/#declaring-dependencies', class: 'btn btn-primary'
6 changes: 3 additions & 3 deletions source/localizable/guides/creating_gem.en.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ along this path.
Related reading:

* [Creating a gem with a C
extension](http://guides.rubygems.org/gems-with-extensions/)
extension](https://guides.rubygems.org/gems-with-extensions/)
* [Common practices for developing
gems](http://guides.rubygems.org/patterns/)
gems](https://guides.rubygems.org/patterns/)

## But first, why?

Expand Down Expand Up @@ -49,7 +49,7 @@ We call our gem `foodie` because this gem is going to do a couple of things arou
portraying them as either "Delicious!" or "Gross!". Stay tuned.

For information on gem naming conventions, you can read the &ldquo;[Name Your
Gem](http://guides.rubygems.org/name-your-gem/)&rdquo; guide on the RubyGems website.
Gem](https://guides.rubygems.org/name-your-gem/)&rdquo; guide on the RubyGems website.

This command creates a [scaffold directory](https://github.com/radar/guides/tree/master/gem-scaffold/foodie)
for our new gem and, if we have
Expand Down

0 comments on commit b220f03

Please sign in to comment.