Sha256: 72e6cea101a82e0e0ed79d3696c91c5ff4a1411f3d610c0fbc8ae8f69107aaee
Contents?: true
Size: 403 Bytes
Versions: 2
Compression:
Stored size: 403 Bytes
Contents
module VagrantPlugins module Ventriloquist module Platforms class Elixir < Platform def provision(machine) @config[:version] = '0.11.2' if @config[:version] == 'latest' machine.guest.tap do |guest| guest.capability(:erlang_install) guest.capability(:elixir_install, @config[:version]) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ventriloquist-0.4.1 | lib/ventriloquist/platforms/elixir.rb |
ventriloquist-0.4.0 | lib/ventriloquist/platforms/elixir.rb |