README.md in vagrant-parallels-0.0.7 vs README.md in vagrant-parallels-0.0.8

- old
+ new

@@ -104,9 +104,20 @@ ``` It means that two public network adapters will be configured: 1) The first will be bridged to the 'Wi-Fi' host machine's interface and will have the specified MAC address. After the VM boot it will be automatically configured to get an IP from the DHCP server, which is accessible in the 'Wi-Fi' network). 2) The second adapter will be bridged to the interface 'en4' and will have static ip '10.3.1.18' and mask '255.255.252.0'. +## Provider Specific Configuration + +Provider allows to define directives for `prlctl set` through `Vagrantfile` in same way as this done in VirtualBox provider. + +#### Example: +```ruby + config.vm.provider :parallels do |parallels| + parallels.name = "HipHop VM" + parallels.customize ["set", :id, "--memsize", "1024"] +``` + ## Development To work on the `vagrant-parallels` plugin, clone this repository out ```