-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from block/myron/update-links
Update project links.
- Loading branch information
Showing
4 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
contact_links: | ||
- name: ❓ Questions and Help 🤔 | ||
url: https://discord.gg/tbd (/add your discord channel if applicable) | ||
url: https://discord.com/invite/c79mzZnu | ||
about: This issue tracker is not for support questions. Please refer to the community for more help. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,21 @@ def self.define_elasticgraph_gem(gemspec_file:, category:) | |
spec.version = ElasticGraph::VERSION | ||
spec.authors = ["Myron Marston", "Ben VandenBos", "Block Engineering"] | ||
spec.email = ["[email protected]"] | ||
spec.homepage = "https://block.github.io/elasticgraph/" | ||
spec.license = "MIT" | ||
spec.metadata["gem_category"] = category.to_s | ||
|
||
# See https://guides.rubygems.org/specification-reference/#metadata | ||
# for metadata entries understood by rubygems.org. | ||
spec.metadata = { | ||
"bug_tracker_uri" => "https://github.com/block/elasticgraph/issues", | ||
"changelog_uri" => "https://github.com/block/elasticgraph/releases/tag/v#{ElasticGraph::VERSION}", | ||
"documentation_uri" => "https://block.github.io/elasticgraph/docs/main/", # TODO(#2): update this URL to link to the exact doc version | ||
"homepage_uri" => "https://block.github.io/elasticgraph/", | ||
"source_code_uri" => "https://github.com/block/elasticgraph/tree/v#{ElasticGraph::VERSION}/#{spec.name}", | ||
"gem_category" => category.to_s # used by script/update_readme | ||
} | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
# We also remove `.rspec` and `Gemfile` because these files are not needed in | ||
|