small typo fixes, in heroku and seed scripts [ci skip]

This commit is contained in:
Maxwell Salzberg 2012-04-03 15:02:10 -07:00
parent bb5aa2821d
commit a5b53717ea
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ bob = Factory(:user_with_aspect, :username => "bob", :password => 'evankorth')
eve = Factory(:user_with_aspect, :username => "eve", :password => 'evankorth')
def url_hash(name)
image_url = "/assets/user/#{name}jpg"
image_url = "/assets/user/#{name}.jpg"
{
:image_url => image_url,
:image_url_small => image_url,

View file

@ -30,7 +30,7 @@ namespace :heroku do
each_heroku_app do |stage|
system("heroku labs:enable user_env_compile -a #{stage.app}")
stage.run('config:add', "#{fog} #{fog_provider} #{fog} #{aws_secret_access_key} #{aws_access_key_id} ASSET_HOST=#{asset_host}")
stage.run('config:add', "#{fog} #{fog_provider} #{aws_secret_access_key} #{aws_access_key_id} ASSET_HOST=#{asset_host}")
end
end
end