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:
parent
dfb1fbc83f
commit
eda6d05308
3 changed files with 25 additions and 5 deletions
5
AUTHORS
5
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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
16
Rakefile
16
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
|
||||
|
|
Loading…
Reference in a new issue