Skip to content

Instantly share code, notes, and snippets.

@richo
Created October 25, 2012 05:21
Show Gist options
  • Save richo/3950530 to your computer and use it in GitHub Desktop.
Save richo/3950530 to your computer and use it in GitHub Desktop.
met {
installed = `pip freeze`.chomp.lines
required = File.read('requirements.txt').lines
required.map do |req|
installed.include? req
end.all?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment