Created
November 15, 2012 00:54
-
-
Save lithix-src/4075936 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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