├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── development └── Vagrantfile ├── examples ├── README.md ├── osx │ ├── applescript │ │ └── notify-send.rb │ ├── growl_for_mac │ │ └── notify-send.rb │ └── terminal-notifier │ │ └── notify-send.rb └── windows │ ├── growl_for_windows │ └── notify-send.rb │ ├── notification-center │ └── notify-send.ps1 │ └── snarl │ └── notify-send.rb ├── files └── notify-send.erb ├── lib ├── vagrant-notify.rb └── vagrant-notify │ ├── action.rb │ ├── action │ ├── check_provider.rb │ ├── install_command.rb │ ├── notify_provisioning_status.rb │ ├── prepare_data.rb │ ├── server_is_running.rb │ ├── set_shared_folder.rb │ ├── start_server.rb │ ├── stop_server.rb │ └── windows │ │ └── process_info.rb │ ├── command.rb │ ├── config.rb │ ├── data.rb │ ├── plugin.rb │ ├── server.rb │ └── version.rb ├── spec ├── action │ ├── install_command_spec.rb │ ├── prepare_data_spec.rb │ ├── server_is_running_spec.rb │ ├── start_server_spec.rb │ └── stop_server_spec.rb ├── data_spec.rb ├── server_spec.rb └── spec_helper.rb └── vagrant-notify.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/Rakefile -------------------------------------------------------------------------------- /development/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/development/Vagrantfile -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/osx/applescript/notify-send.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/osx/applescript/notify-send.rb -------------------------------------------------------------------------------- /examples/osx/growl_for_mac/notify-send.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/osx/growl_for_mac/notify-send.rb -------------------------------------------------------------------------------- /examples/osx/terminal-notifier/notify-send.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/osx/terminal-notifier/notify-send.rb -------------------------------------------------------------------------------- /examples/windows/growl_for_windows/notify-send.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/windows/growl_for_windows/notify-send.rb -------------------------------------------------------------------------------- /examples/windows/notification-center/notify-send.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/windows/notification-center/notify-send.ps1 -------------------------------------------------------------------------------- /examples/windows/snarl/notify-send.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/examples/windows/snarl/notify-send.rb -------------------------------------------------------------------------------- /files/notify-send.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/files/notify-send.erb -------------------------------------------------------------------------------- /lib/vagrant-notify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/check_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/check_provider.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/install_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/install_command.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/notify_provisioning_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/notify_provisioning_status.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/prepare_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/prepare_data.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/server_is_running.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/server_is_running.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/set_shared_folder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/set_shared_folder.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/start_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/start_server.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/stop_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/stop_server.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/action/windows/process_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/action/windows/process_info.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/command.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/config.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/data.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/server.rb -------------------------------------------------------------------------------- /lib/vagrant-notify/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/lib/vagrant-notify/version.rb -------------------------------------------------------------------------------- /spec/action/install_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/action/install_command_spec.rb -------------------------------------------------------------------------------- /spec/action/prepare_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/action/prepare_data_spec.rb -------------------------------------------------------------------------------- /spec/action/server_is_running_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/action/server_is_running_spec.rb -------------------------------------------------------------------------------- /spec/action/start_server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/action/start_server_spec.rb -------------------------------------------------------------------------------- /spec/action/stop_server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/action/stop_server_spec.rb -------------------------------------------------------------------------------- /spec/data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/data_spec.rb -------------------------------------------------------------------------------- /spec/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/server_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /vagrant-notify.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-notify/HEAD/vagrant-notify.gemspec --------------------------------------------------------------------------------