Skip to content

Commit cea3932

Browse files
committed
Update various community docs
1 parent ec41304 commit cea3932

File tree

5 files changed

+9
-238
lines changed

5 files changed

+9
-238
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/formatting.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 183 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,11 @@ Refer to [this issue](https://github.com/prettier/plugin-ruby/issues/113#issueco
205205

206206
## Contributing
207207

208-
Check out our [contributing guide](CONTRIBUTING.md). Bug reports and pull requests are welcome on GitHub at https://github.com/prettier/plugin-ruby.
208+
Thanks so much for your interest in contributing! You can contribute in many ways, including:
209209

210-
You can support `prettier/plugin-ruby` [on OpenCollective](https://opencollective.com/prettier-ruby/contribute). Your organization's logo will show up here with a link to your website.
210+
* Contributing code to fix any bugs on [GitHub](https://github.com/prettier/plugin-ruby).
211+
* Reporting issues on [GitHub](https://github.com/prettier/plugin-ruby/issues/new).
212+
* Supporting `prettier/plugin-ruby` on [OpenCollective](https://opencollective.com/prettier-ruby/contribute). Your organization's logo will show up here with a link to your website.
211213

212214
<!-- prettier-ignore-start -->
213215
<!-- markdownlint-disable -->

prettier.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
55

66
Gem::Specification.new do |spec|
77
spec.name = "prettier"
8-
spec.version = package["version"]
9-
spec.authors = [package["author"]]
8+
spec.version = package.fetch("version")
9+
spec.authors = [package.fetch("author")]
1010

11-
spec.summary = package["description"]
12-
spec.homepage = package["homepage"]
13-
spec.license = package["license"]
11+
spec.summary = package.fetch("description")
12+
spec.homepage = package.fetch("homepage")
13+
spec.license = package.fetch("license")
1414

1515
spec.files =
1616
Dir.chdir(__dir__) do

0 commit comments

Comments
 (0)