Skip to content

Instantly share code, notes, and snippets.

@thom8
Created December 21, 2015 10:29
Show Gist options
  • Save thom8/021d1c8f8dd55cda4a1c to your computer and use it in GitHub Desktop.
Save thom8/021d1c8f8dd55cda4a1c to your computer and use it in GitHub Desktop.
beetbox simple Vagrantfile
require 'open-uri'
conf_files = ["config.yml", "drupal8.make.yml"]
conf_files.each do |conf|
open(conf, 'wb') do |file|
file << open("https://raw.githubusercontent.com/drupalmel/beetbox/master/#{conf}").read
end
end
eval(open("https://raw.githubusercontent.com/drupalmel/beetbox/master/Vagrantfile") {|f| f.read })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment