vagrant-unbundled 1.8.4.2 → 1.8.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +52 -0
- data/Gemfile.lock +9 -7
- data/RELEASE.md +37 -14
- data/lib/vagrant/action/builtin/box_add.rb +3 -1
- data/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb +5 -0
- data/lib/vagrant/box_collection.rb +2 -1
- data/lib/vagrant/bundler.rb +36 -1
- data/lib/vagrant/errors.rb +16 -8
- data/lib/vagrant/plugin/state_file.rb +8 -1
- data/lib/vagrant/util/platform.rb +1 -1
- data/plugins/guests/arch/cap/change_host_name.rb +13 -10
- data/plugins/guests/arch/cap/configure_networks.rb +11 -8
- data/plugins/guests/arch/cap/nfs.rb +35 -0
- data/plugins/guests/arch/cap/rsync.rb +16 -0
- data/plugins/guests/arch/cap/smb.rb +17 -0
- data/plugins/guests/arch/plugin.rb +28 -3
- data/plugins/guests/atomic/cap/change_host_name.rb +13 -10
- data/plugins/guests/atomic/plugin.rb +3 -3
- data/plugins/guests/{netbsd → bsd}/cap/halt.rb +2 -2
- data/plugins/guests/bsd/cap/nfs.rb +49 -0
- data/plugins/guests/bsd/cap/public_key.rb +65 -0
- data/plugins/guests/bsd/cap/virtualbox.rb +16 -0
- data/plugins/guests/bsd/guest.rb +9 -0
- data/plugins/guests/bsd/plugin.rb +40 -0
- data/plugins/guests/coreos/cap/change_host_name.rb +1 -1
- data/plugins/guests/coreos/plugin.rb +4 -4
- data/plugins/guests/darwin/cap/change_host_name.rb +4 -1
- data/plugins/guests/darwin/cap/configure_networks.rb +12 -5
- data/plugins/guests/darwin/cap/halt.rb +3 -1
- data/plugins/guests/darwin/cap/rsync.rb +7 -4
- data/plugins/guests/darwin/plugin.rb +13 -28
- data/plugins/guests/debian/cap/change_host_name.rb +14 -15
- data/plugins/guests/debian/cap/configure_networks.rb +2 -6
- data/plugins/guests/debian/cap/{nfs_client.rb → nfs.rb} +2 -1
- data/plugins/guests/debian/cap/rsync.rb +5 -6
- data/plugins/guests/debian/plugin.rb +8 -8
- data/plugins/guests/esxi/cap/mount_nfs_folder.rb +2 -2
- data/plugins/guests/esxi/plugin.rb +6 -6
- data/plugins/guests/fedora/cap/flavor.rb +1 -1
- data/plugins/guests/fedora/plugin.rb +2 -17
- data/plugins/guests/freebsd/cap/change_host_name.rb +2 -3
- data/plugins/guests/freebsd/cap/rsync.rb +7 -4
- data/plugins/guests/freebsd/plugin.rb +9 -29
- data/plugins/guests/funtoo/plugin.rb +3 -8
- data/plugins/guests/gentoo/cap/change_host_name.rb +21 -6
- data/plugins/guests/gentoo/cap/configure_networks.rb +35 -26
- data/plugins/guests/gentoo/plugin.rb +4 -4
- data/plugins/guests/linux/cap/choose_addressable_ip_addr.rb +2 -3
- data/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb +31 -45
- data/plugins/guests/linux/cap/network_interfaces.rb +20 -0
- data/plugins/guests/linux/cap/nfs.rb +57 -0
- data/plugins/guests/linux/cap/public_key.rb +65 -0
- data/plugins/guests/linux/cap/rsync.rb +7 -4
- data/plugins/guests/linux/plugin.rb +30 -25
- data/plugins/guests/mint/plugin.rb +1 -1
- data/plugins/guests/netbsd/plugin.rb +10 -30
- data/plugins/guests/nixos/plugin.rb +5 -5
- data/plugins/guests/omnios/cap/change_host_name.rb +1 -1
- data/plugins/guests/omnios/plugin.rb +4 -4
- data/plugins/guests/openbsd/cap/change_host_name.rb +21 -3
- data/plugins/guests/openbsd/plugin.rb +10 -30
- data/plugins/guests/photon/cap/change_host_name.rb +1 -1
- data/plugins/guests/photon/plugin.rb +4 -4
- data/plugins/guests/pld/cap/change_host_name.rb +1 -1
- data/plugins/guests/pld/plugin.rb +4 -4
- data/plugins/guests/redhat/cap/change_host_name.rb +4 -3
- data/plugins/guests/redhat/cap/configure_networks.rb +1 -24
- data/plugins/guests/redhat/plugin.rb +7 -7
- data/plugins/guests/slackware/cap/change_host_name.rb +1 -1
- data/plugins/guests/slackware/cap/configure_networks.rb +1 -5
- data/plugins/guests/slackware/plugin.rb +3 -3
- data/plugins/guests/smartos/plugin.rb +12 -12
- data/plugins/guests/solaris/plugin.rb +14 -14
- data/plugins/guests/solaris11/plugin.rb +12 -12
- data/plugins/guests/suse/cap/change_host_name.rb +1 -1
- data/plugins/guests/suse/cap/configure_networks.rb +1 -5
- data/plugins/guests/suse/plugin.rb +8 -8
- data/plugins/guests/tinycore/cap/mount_nfs.rb +2 -2
- data/plugins/guests/tinycore/plugin.rb +7 -7
- data/plugins/guests/trisquel/plugin.rb +1 -1
- data/plugins/guests/ubuntu/guest.rb +1 -1
- data/plugins/guests/ubuntu/plugin.rb +1 -6
- data/plugins/guests/windows/plugin.rb +2 -2
- data/plugins/kernel_v2/config/vm.rb +8 -1
- data/plugins/providers/hyperv/scripts/get_vm_status.ps1 +25 -5
- data/plugins/providers/virtualbox/driver/meta.rb +1 -0
- data/plugins/providers/virtualbox/driver/version_5_1.rb +734 -0
- data/plugins/providers/virtualbox/plugin.rb +1 -0
- data/plugins/synced_folders/nfs/synced_folder.rb +10 -2
- data/plugins/synced_folders/rsync/helper.rb +11 -4
- data/scripts/{bintray_upload.sh → sign.sh} +0 -0
- data/templates/guests/arch/network_static.erb +3 -3
- data/templates/guests/arch/network_static6.erb +8 -0
- data/templates/guests/freebsd/network_static6.erb +6 -0
- data/templates/guests/funtoo/network_static6.erb +9 -0
- data/templates/guests/gentoo/network_dhcp.erb +1 -1
- data/templates/guests/gentoo/network_static.erb +4 -4
- data/templates/guests/gentoo/network_static6.erb +7 -0
- data/templates/guests/redhat/network_dhcp.erb +1 -1
- data/templates/guests/redhat/network_static.erb +4 -1
- data/templates/guests/{fedora → redhat}/network_static6.erb +5 -2
- data/templates/locales/en.yml +40 -6
- data/test/unit/plugins/guests/arch/cap/change_host_name_test.rb +6 -6
- data/test/unit/plugins/guests/arch/cap/configure_networks_test.rb +20 -15
- data/test/unit/plugins/guests/arch/cap/rsync_test.rb +30 -0
- data/test/unit/plugins/guests/arch/cap/smb_test.rb +38 -0
- data/test/unit/plugins/guests/atomic/cap/change_host_name_test.rb +9 -8
- data/test/unit/plugins/guests/{freebsd → bsd}/cap/halt_test.rb +11 -10
- data/test/unit/plugins/guests/{freebsd → bsd}/cap/insert_public_key_test.rb +7 -6
- data/test/unit/plugins/guests/bsd/cap/nfs_test.rb +68 -0
- data/test/unit/plugins/guests/coreos/cap/change_host_name_test.rb +5 -5
- data/test/unit/plugins/guests/darwin/cap/change_host_name_test.rb +5 -5
- data/test/unit/plugins/guests/darwin/cap/halt_test.rb +36 -0
- data/test/unit/plugins/guests/debian/cap/change_host_name_test.rb +3 -5
- data/test/unit/plugins/guests/debian/cap/configure_networks_test.rb +13 -9
- data/test/unit/plugins/guests/debian/cap/rsync_test.rb +3 -11
- data/test/unit/plugins/guests/freebsd/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/linux/cap/mount_nfs_test.rb +16 -3
- data/test/unit/plugins/guests/omnios/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/photon/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/pld/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/redhat/cap/change_host_name_test.rb +4 -3
- data/test/unit/plugins/guests/redhat/cap/configure_networks_test.rb +17 -33
- data/test/unit/plugins/guests/slackware/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/slackware/cap/configure_networks_test.rb +8 -4
- data/test/unit/plugins/guests/suse/cap/change_host_name_test.rb +2 -2
- data/test/unit/plugins/guests/suse/cap/configure_networks_test.rb +13 -16
- data/test/unit/plugins/kernel_v2/config/vm_test.rb +10 -2
- data/test/unit/templates/guests/arch/network_static_test.rb +4 -2
- data/test/unit/templates/guests/gentoo/network_dhcp_test.rb +2 -2
- data/test/unit/templates/guests/gentoo/network_static_test.rb +10 -10
- data/test/unit/templates/guests/redhat/network_dhcp_test.rb +2 -2
- data/test/unit/templates/guests/redhat/network_static_test.rb +9 -9
- data/vagrant.gemspec +3 -3
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/CHANGELOG.md +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/CONTRIBUTING.md +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/README.md +297 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/bin/listen +12 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/base.rb +141 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/bsd.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/config.rb +26 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/darwin.rb +92 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/linux.rb +106 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/polling.rb +37 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter/windows.rb +98 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/adapter.rb +45 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/backend.rb +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/change.rb +76 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/cli.rb +65 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/directory.rb +87 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/config.rb +55 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/loop.rb +117 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/processor.rb +122 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/event/queue.rb +55 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/file.rb +80 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/fsm.rb +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/internals/thread_pool.rb +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/listener/config.rb +41 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/listener.rb +133 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/logger.rb +32 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/options.rb +23 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/queue_optimizer.rb +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/record/entry.rb +64 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/record/symlink_detector.rb +39 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/record.rb +118 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/silencer/controller.rb +48 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/silencer.rb +97 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen/version.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/listen-3.1.5/lib/listen.rb +57 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.gitignore +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.rspec +2 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.rubocop-disables.yml +384 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.rubocop.yml +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/.travis.yml +43 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/AUTHORS +98 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/Gemfile +11 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/LICENSE +21 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/README.md +667 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/Rakefile +132 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/bin/restclient +92 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/history.md +310 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/rest-client.rb +2 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/rest_client.rb +2 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/abstract_response.rb +226 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/exceptions.rb +244 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/params_array.rb +72 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/payload.rb +209 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/platform.rb +49 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/raw_response.rb +38 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/request.rb +904 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/resource.rb +168 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/response.rb +80 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/utils.rb +235 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/version.rb +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/windows/root_certs.rb +105 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient/windows.rb +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/lib/restclient.rb +184 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/rest-client.gemspec +31 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/rest-client.windows.gemspec +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/helpers.rb +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/_lib.rb +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/244b5494.0 +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/81b9768f.0 +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/README +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_digicert/digicert.crt +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/415660c1.0 +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/7651b327.0 +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/README +8 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/capath_verisign/verisign.crt +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/certs/digicert.crt +19 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/certs/verisign.crt +14 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/httpbin_spec.rb +86 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/integration_spec.rb +125 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/integration/request_spec.rb +127 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/spec_helper.rb +29 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/_lib.rb +1 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/abstract_response_spec.rb +145 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/exceptions_spec.rb +108 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/master_shake.jpg +0 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/params_array_spec.rb +36 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/payload_spec.rb +263 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/raw_response_spec.rb +18 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/request2_spec.rb +54 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/request_spec.rb +1265 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/resource_spec.rb +130 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/response_spec.rb +241 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/restclient_spec.rb +79 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/utils_spec.rb +147 -0
- data/vendor/bundle/ruby/2.3.0/gems/rest-client-2.0.0/spec/unit/windows/root_certs_spec.rb +22 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.gitignore +10 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.rspec +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.rubocop.yml +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/.travis.yml +11 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/LICENSE.txt +21 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/README.md +151 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/logger.rb +16 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/quiet.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/ruby_version.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/travis/ruby_version.rb +59 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/travis.rb +58 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/version.rb +3 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep/warning.rb +97 -0
- data/vendor/bundle/ruby/2.3.0/gems/ruby_dep-1.4.0/lib/ruby_dep.rb +2 -0
- data/vendor/bundle/ruby/2.3.0/specifications/listen-3.1.5.gemspec +44 -0
- data/vendor/bundle/ruby/2.3.0/specifications/rest-client-2.0.0.gemspec +60 -0
- data/vendor/bundle/ruby/2.3.0/specifications/ruby_dep-1.4.0.gemspec +34 -0
- data/version.txt +1 -1
- metadata +147 -44
- data/plugins/guests/darwin/cap/insert_public_key.rb +0 -33
- data/plugins/guests/darwin/cap/mount_nfs_folder.rb +0 -37
- data/plugins/guests/darwin/cap/remove_public_key.rb +0 -21
- data/plugins/guests/fedora/cap/change_host_name.rb +0 -29
- data/plugins/guests/fedora/cap/configure_networks.rb +0 -135
- data/plugins/guests/fedora/cap/network_scripts_dir.rb +0 -15
- data/plugins/guests/freebsd/cap/halt.rb +0 -16
- data/plugins/guests/freebsd/cap/insert_public_key.rb +0 -34
- data/plugins/guests/freebsd/cap/mount_nfs_folder.rb +0 -24
- data/plugins/guests/freebsd/cap/remove_public_key.rb +0 -21
- data/plugins/guests/funtoo/cap/change_host_name.rb +0 -17
- data/plugins/guests/linux/cap/insert_public_key.rb +0 -31
- data/plugins/guests/linux/cap/mount_nfs.rb +0 -50
- data/plugins/guests/linux/cap/nfs_client.rb +0 -11
- data/plugins/guests/linux/cap/remove_public_key.rb +0 -24
- data/plugins/guests/netbsd/cap/insert_public_key.rb +0 -21
- data/plugins/guests/netbsd/cap/mount_nfs_folder.rb +0 -17
- data/plugins/guests/netbsd/cap/remove_public_key.rb +0 -21
- data/plugins/guests/openbsd/cap/halt.rb +0 -16
- data/plugins/guests/openbsd/cap/insert_public_key.rb +0 -21
- data/plugins/guests/openbsd/cap/mount_nfs_folder.rb +0 -14
- data/plugins/guests/openbsd/cap/remove_public_key.rb +0 -21
- data/plugins/guests/ubuntu/cap/change_host_name.rb +0 -52
- data/templates/guests/fedora/network_dhcp.erb +0 -6
- data/templates/guests/fedora/network_static.erb +0 -16
- data/test/unit/plugins/guests/freebsd/cap/mount_nfs_folder_test.rb +0 -53
- data/test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb +0 -42
- data/test/unit/templates/guests/fedora/network_dhcp_test.rb +0 -21
- data/test/unit/templates/guests/fedora/network_static6_test.rb +0 -25
- data/test/unit/templates/guests/fedora/network_static_test.rb +0 -71
@@ -7,13 +7,12 @@ describe "VagrantPlugins::GuestRedHat::Cap::ConfigureNetworks" do
|
|
7
7
|
.guest_capabilities[:redhat]
|
8
8
|
end
|
9
9
|
|
10
|
-
let(:
|
10
|
+
let(:guest) { double("guest") }
|
11
|
+
let(:machine) { double("machine", guest: guest) }
|
11
12
|
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
12
13
|
|
13
14
|
before do
|
14
15
|
allow(machine).to receive(:communicate).and_return(comm)
|
15
|
-
comm.stub_command("ifconfig -a | grep -o ^[0-9a-z]* | grep -v '^lo'",
|
16
|
-
stdout: "eth1\neth2")
|
17
16
|
end
|
18
17
|
|
19
18
|
after do
|
@@ -23,6 +22,16 @@ describe "VagrantPlugins::GuestRedHat::Cap::ConfigureNetworks" do
|
|
23
22
|
describe ".configure_networks" do
|
24
23
|
let(:cap) { caps.get(:configure_networks) }
|
25
24
|
|
25
|
+
before do
|
26
|
+
allow(guest).to receive(:capability)
|
27
|
+
.with(:network_scripts_dir)
|
28
|
+
.and_return("/scripts")
|
29
|
+
|
30
|
+
allow(guest).to receive(:capability)
|
31
|
+
.with(:network_interfaces)
|
32
|
+
.and_return(["eth1", "eth2"])
|
33
|
+
end
|
34
|
+
|
26
35
|
let(:network_1) do
|
27
36
|
{
|
28
37
|
interface: 0,
|
@@ -40,41 +49,16 @@ describe "VagrantPlugins::GuestRedHat::Cap::ConfigureNetworks" do
|
|
40
49
|
}
|
41
50
|
end
|
42
51
|
|
43
|
-
let(:network_scripts_dir) { "/" }
|
44
|
-
|
45
|
-
let(:capability) { double("capability") }
|
46
|
-
|
47
|
-
before do
|
48
|
-
allow(machine).to receive(:guest).and_return(capability)
|
49
|
-
allow(capability).to receive(:capability)
|
50
|
-
.with(:network_scripts_dir)
|
51
|
-
.and_return(network_scripts_dir)
|
52
|
-
end
|
53
|
-
|
54
|
-
it "uses fedora for rhel7 configuration" do
|
55
|
-
require_relative "../../../../../../plugins/guests/fedora/cap/configure_networks"
|
56
|
-
|
57
|
-
allow(capability).to receive(:capability)
|
58
|
-
.with(:flavor)
|
59
|
-
.and_return(:rhel_7)
|
60
|
-
allow(VagrantPlugins::GuestFedora::Cap::ConfigureNetworks)
|
61
|
-
.to receive(:configure_networks)
|
62
|
-
|
63
|
-
expect(VagrantPlugins::GuestFedora::Cap::ConfigureNetworks)
|
64
|
-
.to receive(:configure_networks).once
|
65
|
-
cap.configure_networks(machine, [network_1, network_2])
|
66
|
-
end
|
67
|
-
|
68
52
|
it "creates and starts the networks" do
|
69
|
-
allow(
|
53
|
+
allow(guest).to receive(:capability)
|
70
54
|
.with(:flavor)
|
71
55
|
.and_return(:rhel)
|
72
56
|
|
73
57
|
cap.configure_networks(machine, [network_1, network_2])
|
74
|
-
expect(comm.received_commands[
|
75
|
-
expect(comm.received_commands[
|
76
|
-
expect(comm.received_commands[
|
77
|
-
expect(comm.received_commands[
|
58
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifdown 'eth1'/)
|
59
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifup 'eth1'/)
|
60
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifdown 'eth2'/)
|
61
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifup 'eth2'/)
|
78
62
|
end
|
79
63
|
end
|
80
64
|
end
|
@@ -24,7 +24,7 @@ describe "VagrantPlugins::GuestSlackware::Cap::ChangeHostName" do
|
|
24
24
|
let(:name) { "banana-rama.example.com" }
|
25
25
|
|
26
26
|
it "sets the hostname" do
|
27
|
-
comm.stub_command("hostname -f | grep
|
27
|
+
comm.stub_command("hostname -f | grep '^#{name}$'", exit_code: 1)
|
28
28
|
|
29
29
|
cap.change_host_name(machine, name)
|
30
30
|
expect(comm.received_commands[1]).to match(/echo '#{name}' > \/etc\/hostname/)
|
@@ -32,7 +32,7 @@ describe "VagrantPlugins::GuestSlackware::Cap::ChangeHostName" do
|
|
32
32
|
end
|
33
33
|
|
34
34
|
it "does not change the hostname if already set" do
|
35
|
-
comm.stub_command("hostname -f | grep
|
35
|
+
comm.stub_command("hostname -f | grep '^#{name}$'", exit_code: 0)
|
36
36
|
cap.change_host_name(machine, name)
|
37
37
|
expect(comm.received_commands.size).to eq(1)
|
38
38
|
end
|
@@ -7,13 +7,12 @@ describe "VagrantPlugins::GuestSlackware::Cap::ConfigureNetworks" do
|
|
7
7
|
.guest_capabilities[:slackware]
|
8
8
|
end
|
9
9
|
|
10
|
-
let(:
|
10
|
+
let(:guest) { double("guest") }
|
11
|
+
let(:machine) { double("machine", guest: guest) }
|
11
12
|
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
12
13
|
|
13
14
|
before do
|
14
15
|
allow(machine).to receive(:communicate).and_return(comm)
|
15
|
-
comm.stub_command("ip -o -0 addr | grep -v LOOPBACK | awk '{print $2}' | sed 's/://'",
|
16
|
-
stdout: "eth1\neth2")
|
17
16
|
end
|
18
17
|
|
19
18
|
after do
|
@@ -23,6 +22,11 @@ describe "VagrantPlugins::GuestSlackware::Cap::ConfigureNetworks" do
|
|
23
22
|
describe ".configure_networks" do
|
24
23
|
let(:cap) { caps.get(:configure_networks) }
|
25
24
|
|
25
|
+
before do
|
26
|
+
allow(guest).to receive(:capability).with(:network_interfaces)
|
27
|
+
.and_return(["eth1", "eth2"])
|
28
|
+
end
|
29
|
+
|
26
30
|
let(:network_1) do
|
27
31
|
{
|
28
32
|
interface: 0,
|
@@ -42,7 +46,7 @@ describe "VagrantPlugins::GuestSlackware::Cap::ConfigureNetworks" do
|
|
42
46
|
|
43
47
|
it "creates and starts the networks" do
|
44
48
|
cap.configure_networks(machine, [network_1, network_2])
|
45
|
-
expect(comm.received_commands[
|
49
|
+
expect(comm.received_commands[0]).to match(/\/etc\/rc.d\/rc.inet1/)
|
46
50
|
end
|
47
51
|
end
|
48
52
|
end
|
@@ -24,7 +24,7 @@ describe "VagrantPlugins::GuestSUSE::Cap::ChangeHostName" do
|
|
24
24
|
let(:name) { "banana-rama.example.com" }
|
25
25
|
|
26
26
|
it "sets the hostname" do
|
27
|
-
comm.stub_command("hostname -f | grep
|
27
|
+
comm.stub_command("hostname -f | grep '^#{name}$'", exit_code: 1)
|
28
28
|
|
29
29
|
cap.change_host_name(machine, name)
|
30
30
|
expect(comm.received_commands[1]).to match(/echo '#{name}' > \/etc\/HOSTNAME/)
|
@@ -32,7 +32,7 @@ describe "VagrantPlugins::GuestSUSE::Cap::ChangeHostName" do
|
|
32
32
|
end
|
33
33
|
|
34
34
|
it "does not change the hostname if already set" do
|
35
|
-
comm.stub_command("hostname -f | grep
|
35
|
+
comm.stub_command("hostname -f | grep '^#{name}$'", exit_code: 0)
|
36
36
|
cap.change_host_name(machine, name)
|
37
37
|
expect(comm.received_commands.size).to eq(1)
|
38
38
|
end
|
@@ -7,13 +7,12 @@ describe "VagrantPlugins::GuestSUSE::Cap::ConfigureNetworks" do
|
|
7
7
|
.guest_capabilities[:suse]
|
8
8
|
end
|
9
9
|
|
10
|
-
let(:
|
10
|
+
let(:guest) { double("guest") }
|
11
|
+
let(:machine) { double("machine", guest: guest) }
|
11
12
|
let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }
|
12
13
|
|
13
14
|
before do
|
14
15
|
allow(machine).to receive(:communicate).and_return(comm)
|
15
|
-
comm.stub_command("ip -o -0 addr | grep -v LOOPBACK | awk '{print $2}' | sed 's/://'",
|
16
|
-
stdout: "eth1\neth2")
|
17
16
|
end
|
18
17
|
|
19
18
|
after do
|
@@ -23,6 +22,13 @@ describe "VagrantPlugins::GuestSUSE::Cap::ConfigureNetworks" do
|
|
23
22
|
describe ".configure_networks" do
|
24
23
|
let(:cap) { caps.get(:configure_networks) }
|
25
24
|
|
25
|
+
before do
|
26
|
+
allow(guest).to receive(:capability).with(:network_scripts_dir)
|
27
|
+
.and_return("/scripts")
|
28
|
+
allow(guest).to receive(:capability).with(:network_interfaces)
|
29
|
+
.and_return(["eth1", "eth2"])
|
30
|
+
end
|
31
|
+
|
26
32
|
let(:network_1) do
|
27
33
|
{
|
28
34
|
interface: 0,
|
@@ -40,21 +46,12 @@ describe "VagrantPlugins::GuestSUSE::Cap::ConfigureNetworks" do
|
|
40
46
|
}
|
41
47
|
end
|
42
48
|
|
43
|
-
let(:guest) { double("guest") }
|
44
|
-
|
45
|
-
before do
|
46
|
-
allow(machine).to receive(:guest).and_return(guest)
|
47
|
-
allow(guest).to receive(:capability)
|
48
|
-
.with(:network_scripts_dir)
|
49
|
-
.and_return("/scripts")
|
50
|
-
end
|
51
|
-
|
52
49
|
it "creates and starts the networks" do
|
53
50
|
cap.configure_networks(machine, [network_1, network_2])
|
54
|
-
expect(comm.received_commands[
|
55
|
-
expect(comm.received_commands[
|
56
|
-
expect(comm.received_commands[
|
57
|
-
expect(comm.received_commands[
|
51
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifdown 'eth1'/)
|
52
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifup 'eth1'/)
|
53
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifdown 'eth2'/)
|
54
|
+
expect(comm.received_commands[0]).to match(/\/sbin\/ifup 'eth2'/)
|
58
55
|
end
|
59
56
|
end
|
60
57
|
end
|
@@ -75,9 +75,17 @@ describe VagrantPlugins::Kernel_V2::VMConfig do
|
|
75
75
|
|
76
76
|
context "#box_check_update" do
|
77
77
|
it "defaults to true" do
|
78
|
-
|
78
|
+
with_temp_env("VAGRANT_BOX_UPDATE_CHECK_DISABLE" => "") do
|
79
|
+
subject.finalize!
|
80
|
+
expect(subject.box_check_update).to be(true)
|
81
|
+
end
|
82
|
+
end
|
79
83
|
|
80
|
-
|
84
|
+
it "is false if VAGRANT_BOX_UPDATE_CHECK_DISABLE is set" do
|
85
|
+
with_temp_env("VAGRANT_BOX_UPDATE_CHECK_DISABLE" => "1") do
|
86
|
+
subject.finalize!
|
87
|
+
expect(subject.box_check_update).to be(false)
|
88
|
+
end
|
81
89
|
end
|
82
90
|
end
|
83
91
|
|
@@ -7,8 +7,9 @@ describe "templates/guests/arch/network_static" do
|
|
7
7
|
|
8
8
|
it "renders the template" do
|
9
9
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
device:
|
11
|
-
ip:
|
10
|
+
device: "eth1",
|
11
|
+
ip: "1.1.1.1",
|
12
|
+
netmask: "24",
|
12
13
|
})
|
13
14
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
14
15
|
Connection=ethernet
|
@@ -24,6 +25,7 @@ describe "templates/guests/arch/network_static" do
|
|
24
25
|
device: "eth1",
|
25
26
|
ip: "1.1.1.1",
|
26
27
|
gateway: "1.2.3.4",
|
28
|
+
netmask: "24",
|
27
29
|
})
|
28
30
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
29
31
|
Connection=ethernet
|
@@ -7,12 +7,12 @@ describe "templates/guests/gentoo/network_dhcp" do
|
|
7
7
|
|
8
8
|
it "renders the template" do
|
9
9
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
|
10
|
+
device: "en0",
|
11
11
|
})
|
12
12
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
13
13
|
#VAGRANT-BEGIN
|
14
14
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
15
|
-
|
15
|
+
config_en0="dhcp"
|
16
16
|
#VAGRANT-END
|
17
17
|
EOH
|
18
18
|
end
|
@@ -7,30 +7,30 @@ describe "templates/guests/gentoo/network_static" do
|
|
7
7
|
|
8
8
|
it "renders the template" do
|
9
9
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
|
11
|
-
ip:
|
12
|
-
netmask:
|
10
|
+
device: "en0",
|
11
|
+
ip: "1.1.1.1",
|
12
|
+
netmask: "255.255.0.0",
|
13
13
|
})
|
14
14
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
15
15
|
#VAGRANT-BEGIN
|
16
16
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
17
|
-
|
17
|
+
config_en0=("1.1.1.1 netmask 255.255.0.0")
|
18
18
|
#VAGRANT-END
|
19
19
|
EOH
|
20
20
|
end
|
21
21
|
|
22
22
|
it "includes the gateway" do
|
23
23
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
24
|
-
|
25
|
-
ip:
|
26
|
-
netmask:
|
27
|
-
gateway:
|
24
|
+
device: "en0",
|
25
|
+
ip: "1.1.1.1",
|
26
|
+
netmask: "255.255.0.0",
|
27
|
+
gateway: "1.2.3.4",
|
28
28
|
})
|
29
29
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
30
30
|
#VAGRANT-BEGIN
|
31
31
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
32
|
-
|
33
|
-
|
32
|
+
config_en0=("1.1.1.1 netmask 255.255.0.0")
|
33
|
+
gateways_en0="1.2.3.4"
|
34
34
|
#VAGRANT-END
|
35
35
|
EOH
|
36
36
|
end
|
@@ -7,14 +7,14 @@ describe "templates/guests/redhat/network_dhcp" do
|
|
7
7
|
|
8
8
|
it "renders the template" do
|
9
9
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
|
10
|
+
device: "en0",
|
11
11
|
})
|
12
12
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
13
13
|
#VAGRANT-BEGIN
|
14
14
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
15
15
|
BOOTPROTO=dhcp
|
16
16
|
ONBOOT=yes
|
17
|
-
DEVICE=
|
17
|
+
DEVICE=en0
|
18
18
|
#VAGRANT-END
|
19
19
|
EOH
|
20
20
|
end
|
@@ -7,9 +7,9 @@ describe "templates/guests/redhat/network_static" do
|
|
7
7
|
|
8
8
|
it "renders the template" do
|
9
9
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
10
|
-
|
11
|
-
ip:
|
12
|
-
netmask:
|
10
|
+
device: "en0",
|
11
|
+
ip: "1.1.1.1",
|
12
|
+
netmask: "255.255.0.0",
|
13
13
|
})
|
14
14
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
15
15
|
#VAGRANT-BEGIN
|
@@ -19,7 +19,7 @@ describe "templates/guests/redhat/network_static" do
|
|
19
19
|
ONBOOT=yes
|
20
20
|
IPADDR=1.1.1.1
|
21
21
|
NETMASK=255.255.0.0
|
22
|
-
DEVICE=
|
22
|
+
DEVICE=en0
|
23
23
|
PEERDNS=no
|
24
24
|
#VAGRANT-END
|
25
25
|
EOH
|
@@ -27,10 +27,10 @@ describe "templates/guests/redhat/network_static" do
|
|
27
27
|
|
28
28
|
it "includes the gateway" do
|
29
29
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
30
|
-
|
31
|
-
ip:
|
32
|
-
gateway:
|
33
|
-
netmask:
|
30
|
+
device: "en0",
|
31
|
+
ip: "1.1.1.1",
|
32
|
+
gateway: "1.2.3.4",
|
33
|
+
netmask: "255.255.0.0",
|
34
34
|
})
|
35
35
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
36
36
|
#VAGRANT-BEGIN
|
@@ -40,7 +40,7 @@ describe "templates/guests/redhat/network_static" do
|
|
40
40
|
ONBOOT=yes
|
41
41
|
IPADDR=1.1.1.1
|
42
42
|
NETMASK=255.255.0.0
|
43
|
-
DEVICE=
|
43
|
+
DEVICE=en0
|
44
44
|
GATEWAY=1.2.3.4
|
45
45
|
PEERDNS=no
|
46
46
|
#VAGRANT-END
|
data/vagrant.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.summary = "Build and distribute virtualized development environments."
|
13
13
|
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
|
14
14
|
|
15
|
-
s.required_ruby_version = "
|
15
|
+
s.required_ruby_version = "~> 2.2"
|
16
16
|
s.required_rubygems_version = ">= 1.3.6"
|
17
17
|
s.rubyforge_project = "vagrant"
|
18
18
|
|
@@ -24,14 +24,14 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.add_dependency "childprocess", "~> 0.5.0"
|
25
25
|
s.add_dependency "erubis", "~> 2.7.0"
|
26
26
|
s.add_dependency "i18n", ">= 0.6.0", "<= 0.8.0"
|
27
|
-
s.add_dependency "listen", "~> 3.
|
27
|
+
s.add_dependency "listen", "~> 3.1.5"
|
28
28
|
s.add_dependency "hashicorp-checkpoint", "~> 0.1.1"
|
29
29
|
s.add_dependency "log4r", "~> 1.1.9", "< 1.1.11"
|
30
30
|
s.add_dependency "net-ssh", "~> 3.0.1"
|
31
31
|
s.add_dependency "net-sftp", "~> 2.1"
|
32
32
|
s.add_dependency "net-scp", "~> 1.2.1"
|
33
33
|
s.add_dependency "rb-kqueue", "~> 0.2.0"
|
34
|
-
s.add_dependency "rest-client", ">= 1.6.0", "<
|
34
|
+
s.add_dependency "rest-client", ">= 1.6.0", "< 3.0"
|
35
35
|
s.add_dependency "wdm", "~> 0.1.0"
|
36
36
|
s.add_dependency "winrm", "~> 1.6"
|
37
37
|
s.add_dependency "winrm-fs", "~> 0.3.0"
|
@@ -0,0 +1 @@
|
|
1
|
+
# Moved to [GitHub releases](https://github.com/guard/listen/releases) page.
|
@@ -0,0 +1,38 @@
|
|
1
|
+
Contribute to Listen
|
2
|
+
===================
|
3
|
+
|
4
|
+
File an issue
|
5
|
+
-------------
|
6
|
+
|
7
|
+
If you haven't already, first see [TROUBLESHOOTING](https://github.com/guard/listen/wiki/Troubleshooting) for known issues, solutions and workarounds.
|
8
|
+
|
9
|
+
You can report bugs and feature requests to [GitHub Issues](https://github.com/guard/listen/issues).
|
10
|
+
|
11
|
+
**Please don't ask question in the issue tracker**, instead ask them in our
|
12
|
+
[Google group](http://groups.google.com/group/guard-dev) or on `#guard` (irc.freenode.net).
|
13
|
+
|
14
|
+
Try to figure out where the issue belongs to: Is it an issue with Listen itself or with Guard?
|
15
|
+
|
16
|
+
|
17
|
+
**It's most likely that your bug gets resolved faster if you provide as much information as possible!**
|
18
|
+
|
19
|
+
The MOST useful information is debugging output from Listen (`LISTEN_GEM_DEBUGGING=1`) - see [TROUBLESHOOTING](https://github.com/guard/listen/wiki/Troubleshooting) for details.
|
20
|
+
|
21
|
+
|
22
|
+
Development
|
23
|
+
-----------
|
24
|
+
|
25
|
+
* Documentation hosted at [RubyDoc](http://rubydoc.info/github/guard/listen/master/frames).
|
26
|
+
* Source hosted at [GitHub](https://github.com/guard/listen).
|
27
|
+
|
28
|
+
Pull requests are very welcome! Please try to follow these simple rules if applicable:
|
29
|
+
|
30
|
+
* Please create a topic branch for every separate change you make.
|
31
|
+
* Make sure your patches are well tested. All specs run with `rake spec` must pass.
|
32
|
+
* Update the [Yard](http://yardoc.org/) documentation.
|
33
|
+
* Update the [README](https://github.com/guard/listen/blob/master/README.md).
|
34
|
+
* Update the [CHANGELOG](https://github.com/guard/listen/blob/master/CHANGELOG.md) for noteworthy changes.
|
35
|
+
* Please **do not change** the version number.
|
36
|
+
|
37
|
+
For questions please join us in our [Google group](http://groups.google.com/group/guard-dev) or on
|
38
|
+
`#guard` (irc.freenode.net).
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Thibaud Guillaume-Gentil
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|