I am hosting my app on EngineYard's Appcloud -- gotta say that its a wonderful setup except that you have to use Chef to automate your configuration. And they don't quite take the time to tell the whole answer :) even with paid support!! Hope that coming up to speed with Chef is just a matter of time.
Here is the question, if you can help:
EngineYard tells me that the following chef recipe will automate the downgrade to the gems level needed my app (someday I'd upgrade to Rails 3.0 :) )
execute "downgrade rubygems" do
command "gem update --system 1.4.2"
user "root"
end
I am wondering where in my chef directory/file structure would this snippet go?
This is what my directory looks like:
README.md
Rakefile
cookbooks/
main/
attributes/
definitions/
libraries/
recipes/
Thanks.