-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac228d9
commit a270bc2
Showing
1 changed file
with
13 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -11,8 +11,20 @@ Gem::Specification.new do |spec| | |
spec.email = ['[email protected]'] | ||
|
||
spec.summary = 'Easily generate beautiful documentation from your GraphQL schema.' | ||
spec.homepage = 'https://github.com/gjtorikian/graphql-docs' | ||
spec.description = <<-EOF | ||
GraphQLDocs is a library for generating HTML from a GraphQL API's schema | ||
definition. With ERB templating support and a plethora of configuration | ||
options, you can customize the output to your needs. The library easily | ||
integrates with your Ruby deployment toolchain to ensure the docs for your | ||
API are up to date. | ||
EOF | ||
spec.homepage = 'https://github.com/brettchalupa/graphql-docs' | ||
spec.license = 'MIT' | ||
spec.metadata = { | ||
"bug_tracker_uri" => "https://github.com/brettchalupa/graphql-docs/issues", | ||
"changelog_uri" => "https://github.com/brettchalupa/graphql-docs/blob/main/CHANGELOG.md", | ||
"wiki_uri" => "https://github.com/brettchalupa/graphql-docs/wiki", | ||
} | ||
|
||
spec.files = `git ls-files -z`.split("\x0").reject do |f| | ||
f.match(%r{^(test|spec|features)/}) | ||
|