From eda6d053088f7659721a49600ce84e677527dda9 Mon Sep 17 00:00:00 2001 From: Andy Brody Date: Tue, 14 Apr 2015 13:00:07 -0700 Subject: [PATCH] Update AUTHORS. --- AUTHORS | 5 ++++- README.rdoc | 9 +++++---- Rakefile | 16 ++++++++++++++++ 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index b7987f7..7d6e855 100644 --- a/AUTHORS +++ b/AUTHORS @@ -47,6 +47,7 @@ Joe Rafaniello John Barnette Jon Rowe Jordi Massaguer Pla +Joshua J. Campoverde Juan Alvarez Julien Kirch Justin Coyne @@ -60,9 +61,11 @@ Lars Gierth Lawrence Leonard Gilbert Lee Jarvis Lennon Day-Reynolds +Lin Jen-Shin Marc-André Cournoyer Matthew Manning Michael Klett +Michael Rykov Michael Westbom Mike Fletcher Nelson Elhage @@ -76,7 +79,7 @@ Pedro Belo Philip Corliss Pierre-Louis Gottfrois Rafael Ssouza -Rick "technoweenie" +Rick Olson Robert Eanes Rodrigo Panachi Syl Turner diff --git a/README.rdoc b/README.rdoc index b590d80..9451006 100644 --- a/README.rdoc +++ b/README.rdoc @@ -32,7 +32,7 @@ dependencies for you. == Usage: Raw URL - require 'rest_client' + require 'rest-client' 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 -REST Client Team:: Matthew Manning, Lawrence Leonard Gilbert, Andy Brody +REST Client Team:: Andy Brody Creator:: Adam Wiggins -Maintainer Emeritus:: Julien Kirch +Maintainers Emeriti:: Lawrence Leonard Gilbert, Matthew Manning, 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 diff --git a/Rakefile b/Rakefile index c83b1c7..79fe094 100644 --- a/Rakefile +++ b/Rakefile @@ -34,6 +34,22 @@ RSpec::Core::RakeTask.new('rcov') do |t| t.rcov_opts = ['--exclude', 'examples'] 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 sh 'rake -T' end