You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/localizable/guides/creating_gem.en.html.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,12 +84,11 @@ extension and the _.bundle_ directory.
84
84
where we provide information for Rubygems' consumption such as the name, description and homepage
85
85
of our gem. This is also where we specify the dependencies our gem needs to run.
86
86
* Fields to complete:
87
-
* *summary:* A short summary of your gem's description.
88
-
* *description (optional):* A long description of your gem. The description should be more detailed than the summary but not excessively long. A few paragraphs is a recommended length with no examples or formatting.
89
-
* *homepage:* The URL of your gem's home page, it can be the URL of its website or public repo
90
-
* *metadata["allowed_push_host"]:* The field allows you to restrict gem pushes to a single host. If you are not running your own gem server you should comment this line, otherwise you will not be able to push your gem to rubygems.org.
91
-
* *metadata["source_code_uri"]:* The URL of your gem's public repo
92
-
* *metadata["changelog_uri"]:* The URL of your gem's CHANGELOG.md
87
+
* `description (optional):` A long description of your gem. The description should be more detailed than the summary but not excessively long. A few paragraphs is a recommended length with no examples or formatting.
88
+
* `homepage:` The URL of your gem's home page, it can be the URL of its website or public repo.
89
+
* `metadata["allowed_push_host"]:` The field allows you to restrict gem pushes to a single host. If you are not running your own gem server you should comment this line, otherwise you will not be able to push your gem to rubygems.org.
90
+
* `metadata["source_code_uri"]:` The URL of your gem's public repo.
91
+
* `metadata["changelog_uri"]:` The URL of your gem's CHANGELOG.
93
92
94
93
***lib/foodie.rb**: The main file to define our gem's
95
94
code. This is the file that will be required by Bundler (or any similarly smart system) when our
0 commit comments