-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update creating_gem.en.html.md #579
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -83,6 +83,13 @@ extension and the _.bundle_ directory. | |||||
* **foodie.gemspec**: The Gem Specification file. This is | ||||||
where we provide information for Rubygems' consumption such as the name, description and homepage | ||||||
of our gem. This is also where we specify the dependencies our gem needs to run. | ||||||
* Fields to complete: | ||||||
* *summary:* A short summary of your gem's description. | ||||||
* *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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
* *homepage:* The URL of your gem's home page, it can be the URL of its website or public repo | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
* *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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
That's really advanced stuff for beginner. Is there any chance to reword this to make it clear by allowing |
||||||
* *metadata["source_code_uri"]:* The URL of your gem's public repo | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
* *metadata["changelog_uri"]:* The URL of your gem's CHANGELOG.md | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
* **lib/foodie.rb**: The main file to define our gem's | ||||||
code. This is the file that will be required by Bundler (or any similarly smart system) when our | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.