1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

Update AUTHORS.

This commit is contained in:
Andy Brody 2015-04-14 13:00:07 -07:00
parent dfb1fbc83f
commit eda6d05308
3 changed files with 25 additions and 5 deletions

View file

@ -47,6 +47,7 @@ Joe Rafaniello
John Barnette John Barnette
Jon Rowe Jon Rowe
Jordi Massaguer Pla Jordi Massaguer Pla
Joshua J. Campoverde
Juan Alvarez Juan Alvarez
Julien Kirch Julien Kirch
Justin Coyne Justin Coyne
@ -60,9 +61,11 @@ Lars Gierth
Lawrence Leonard Gilbert Lawrence Leonard Gilbert
Lee Jarvis Lee Jarvis
Lennon Day-Reynolds Lennon Day-Reynolds
Lin Jen-Shin
Marc-André Cournoyer Marc-André Cournoyer
Matthew Manning Matthew Manning
Michael Klett Michael Klett
Michael Rykov
Michael Westbom Michael Westbom
Mike Fletcher Mike Fletcher
Nelson Elhage Nelson Elhage
@ -76,7 +79,7 @@ Pedro Belo
Philip Corliss Philip Corliss
Pierre-Louis Gottfrois Pierre-Louis Gottfrois
Rafael Ssouza Rafael Ssouza
Rick "technoweenie" Rick Olson
Robert Eanes Robert Eanes
Rodrigo Panachi Rodrigo Panachi
Syl Turner Syl Turner

View file

@ -32,7 +32,7 @@ dependencies for you.
== Usage: Raw URL == Usage: Raw URL
require 'rest_client' require 'rest-client'
RestClient.get 'http://example.com/resource' RestClient.get 'http://example.com/resource'
@ -317,15 +317,16 @@ Have a look at rest-client-components: http://github.com/crohr/rest-client-compo
== Credits == Credits
REST Client Team:: Matthew Manning, Lawrence Leonard Gilbert, Andy Brody REST Client Team:: Andy Brody
Creator:: Adam Wiggins Creator:: Adam Wiggins
Maintainer Emeritus:: Julien Kirch Maintainers Emeriti:: Lawrence Leonard Gilbert, Matthew Manning, Julien Kirch
Major contributions:: Blake Mizerany, Julien Kirch Major contributions:: Blake Mizerany, Julien Kirch
Patches contributed by many, including Chris Anderson, Greg Borenstein, Ardekantur, Pedro Belo, Rafael Souza, Rick Olson, Aman Gupta, François Beausoleil and Nick Plante. A great many generous folks have contributed features and patches.
See AUTHORS for the full list.
== Legal == Legal

View file

@ -34,6 +34,22 @@ RSpec::Core::RakeTask.new('rcov') do |t|
t.rcov_opts = ['--exclude', 'examples'] t.rcov_opts = ['--exclude', 'examples']
end end
desc 'Regenerate authors file'
task :authors do
Dir.chdir(File.dirname(__FILE__)) do
File.open('AUTHORS', 'w') do |f|
f.write( <<-EOM
The Ruby REST Client would not be what it is today without the help of
the following kind souls:
EOM
)
end
sh 'git shortlog -s | cut -f 2 >> AUTHORS'
end
end
task :default do task :default do
sh 'rake -T' sh 'rake -T'
end end