├── .gitignore ├── LICENSE ├── README ├── Rakefile ├── VERSION.yml ├── lib └── multipass.rb ├── multipass.gemspec └── test └── multipass_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .rake_tasks 2 | pkg 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/VERSION.yml -------------------------------------------------------------------------------- /lib/multipass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/lib/multipass.rb -------------------------------------------------------------------------------- /multipass.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/multipass.gemspec -------------------------------------------------------------------------------- /test/multipass_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entp/multipass/HEAD/test/multipass_test.rb --------------------------------------------------------------------------------