├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── cucumber.yml ├── features ├── step_definitions │ └── steps.rb ├── support │ └── env.rb ├── vagrant-exec.feature └── vagrant-exec │ ├── binstubs.feature │ ├── directory.feature │ ├── environment_variables.feature │ ├── prepend.feature │ └── validations.feature ├── lib ├── vagrant-exec.rb └── vagrant-exec │ ├── command.rb │ ├── config.rb │ ├── plugin.rb │ ├── support │ ├── command_constructor.rb │ └── ssh_helper.rb │ ├── templates │ └── binstub │ │ ├── default.erb │ │ └── windows.erb │ └── version.rb └── vagrant-exec.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.7 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/Rakefile -------------------------------------------------------------------------------- /cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/cucumber.yml -------------------------------------------------------------------------------- /features/step_definitions/steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/step_definitions/steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/vagrant-exec.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/vagrant-exec.feature -------------------------------------------------------------------------------- /features/vagrant-exec/binstubs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/vagrant-exec/binstubs.feature -------------------------------------------------------------------------------- /features/vagrant-exec/directory.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/vagrant-exec/directory.feature -------------------------------------------------------------------------------- /features/vagrant-exec/environment_variables.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/vagrant-exec/environment_variables.feature -------------------------------------------------------------------------------- /features/vagrant-exec/prepend.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/vagrant-exec/prepend.feature -------------------------------------------------------------------------------- /features/vagrant-exec/validations.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/features/vagrant-exec/validations.feature -------------------------------------------------------------------------------- /lib/vagrant-exec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec.rb -------------------------------------------------------------------------------- /lib/vagrant-exec/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/command.rb -------------------------------------------------------------------------------- /lib/vagrant-exec/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/config.rb -------------------------------------------------------------------------------- /lib/vagrant-exec/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-exec/support/command_constructor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/support/command_constructor.rb -------------------------------------------------------------------------------- /lib/vagrant-exec/support/ssh_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/support/ssh_helper.rb -------------------------------------------------------------------------------- /lib/vagrant-exec/templates/binstub/default.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/templates/binstub/default.erb -------------------------------------------------------------------------------- /lib/vagrant-exec/templates/binstub/windows.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/templates/binstub/windows.erb -------------------------------------------------------------------------------- /lib/vagrant-exec/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/lib/vagrant-exec/version.rb -------------------------------------------------------------------------------- /vagrant-exec.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p0deje/vagrant-exec/HEAD/vagrant-exec.gemspec --------------------------------------------------------------------------------