1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[release] add mvps and fix fog.io uploader

This commit is contained in:
geemus 2011-06-24 15:09:20 -07:00
parent c4b0b04be0
commit 31a8552867
2 changed files with 7 additions and 1 deletions

View file

@ -209,6 +209,8 @@ task :changelog do
if [
'Aaron Suggs',
'geemus',
'Lincoln Stoll',
'Luqman Amjad',
'nightshade427',
'Wesley Beary'
].include?(committer)
@ -242,6 +244,10 @@ task :docs do
Rake::Task[:upload_fog_io].invoke
Rake::Task[:upload_rdoc].invoke
# connect to storage provider
Fog.credential = :geemus
storage = Fog::Storage.new(:provider => 'AWS')
directory = storage.directories.new(:key => 'fog.io')
# write base index with redirect to new version
directory.files.create(
:body => redirecter('latest'),

View file

@ -1,7 +1,7 @@
0.9.0 06/24/2011 32960d165a65f12d41785f924e6b6b6d8442516a
=========================================================
MVP! Lincoln Stoll
MVPs! Lincoln Stoll and Luqman Amjad
[aws]
use AWS.escape instead of CGI.escape. thanks geemus