Skip to content

Commit

Permalink
Merge pull request #44 from Fryguy/drop_contributors_file
Browse files Browse the repository at this point in the history
Drop CONTRIBUTORS.md
  • Loading branch information
agrare committed Jan 26, 2024
2 parents 37ed266 + 38cdaca commit 1d88775
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 69 deletions.
60 changes: 0 additions & 60 deletions CONTRIBUTORS.md

This file was deleted.

7 changes: 6 additions & 1 deletion README.md
@@ -1,6 +1,6 @@
# RbVmomi

[<img src="https://badge.fury.io/rb/rbvmomi2.svg" alt="gem-version">](https://rubygems.org/gems/rbvmomi2)
[<img src="https://badge.fury.io/rb/rbvmomi2.svg" alt="gem-version">](https://rubygems.org/gems/rbvmomi2)
![Test](https://github.com/ManageIQ/rbvmomi2/workflows/Test/badge.svg)
![Lint](https://github.com/ManageIQ/rbvmomi2/workflows/Lint/badge.svg)
[<img src="https://badges.gitter.im/vmware/rbvmomi.svg">](https://gitter.im/vmware/rbvmomi)
Expand Down Expand Up @@ -95,6 +95,11 @@ Open an issue on the [issues page](https://github.com/ManageIQ/rbvmomi2/issues)
or fork the project on [GitHub](https://github.com/ManageIQ/rbvmomi2) and send a
[pull request](https://github.com/ManageIQ/rbvmomi2/pulls).

## Contributors

A huge thanks goes to all of the [contributors](https://github.com/ManageIQ/rbvmomi2/graphs/contributors) on this project.
To see the full list, use `git shortlog -nes`.

## Support

You can chat on [Gitter](https://gitter.im/vmware/rbvmomi)
8 changes: 0 additions & 8 deletions Rakefile
Expand Up @@ -21,11 +21,3 @@ end
RuboCop::RakeTask.new

YARD::Rake::YardocTask.new

desc 'Update the CONTRIBUTORS.md'
task :update_contributors do
contributors = `git log --format='%aN <%aE>'`.each_line.map(&:chomp).sort.uniq
contributors.reject! { |c| c.start_with?('dependabot[bot]') }
content = contributors.map { |c| "* #{c}" }.join("\n") << "\n"
File.write(File.expand_path('CONTRIBUTORS.md', __dir__), content)
end

0 comments on commit 1d88775

Please sign in to comment.