Created
December 21, 2015 10:29
-
-
Save thom8/021d1c8f8dd55cda4a1c to your computer and use it in GitHub Desktop.
beetbox simple Vagrantfile
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
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