Skip to content

Instantly share code, notes, and snippets.

@lithix-src
Created November 15, 2012 00:54
Show Gist options
  • Save lithix-src/4075936 to your computer and use it in GitHub Desktop.
Save lithix-src/4075936 to your computer and use it in GitHub Desktop.
# debian packages
%w{gcc libxslt-dev libxml2-dev}.each do |pkg|
package pkg do
action :install
end
end
# gems
gem_hash = {
"nokogiri" => "1.5.5",
"httparty" => "0.9.0",
"json" => "1.7.5",
"uuidtools" => "2.1.3",
"multi_json" => "1.3.6",
"aws-sdk" => "1.6.9"
}
gem_hash.each do |g,v|
gem_package g do
version v
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment