├── .rspec ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── TODO.md ├── Vagrantfile ├── lib ├── vagabond.rb └── vagabond │ ├── matchers.rb │ ├── matchers │ ├── file.rb │ ├── gem.rb │ ├── package.rb │ └── service.rb │ ├── resources.rb │ └── resources │ ├── file.rb │ ├── gem.rb │ ├── package.rb │ └── service.rb └── spec ├── cookbooks └── vagabond │ ├── metadata.rb │ └── recipes │ └── default.rb ├── file_spec.rb ├── gem_spec.rb ├── package_spec.rb └── service_spec.rb /.rspec: -------------------------------------------------------------------------------- 1 | --color --format documentation 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/TODO.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/Vagrantfile -------------------------------------------------------------------------------- /lib/vagabond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond.rb -------------------------------------------------------------------------------- /lib/vagabond/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/matchers.rb -------------------------------------------------------------------------------- /lib/vagabond/matchers/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/matchers/file.rb -------------------------------------------------------------------------------- /lib/vagabond/matchers/gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/matchers/gem.rb -------------------------------------------------------------------------------- /lib/vagabond/matchers/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/matchers/package.rb -------------------------------------------------------------------------------- /lib/vagabond/matchers/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/matchers/service.rb -------------------------------------------------------------------------------- /lib/vagabond/resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/resources.rb -------------------------------------------------------------------------------- /lib/vagabond/resources/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/resources/file.rb -------------------------------------------------------------------------------- /lib/vagabond/resources/gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/resources/gem.rb -------------------------------------------------------------------------------- /lib/vagabond/resources/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/resources/package.rb -------------------------------------------------------------------------------- /lib/vagabond/resources/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/lib/vagabond/resources/service.rb -------------------------------------------------------------------------------- /spec/cookbooks/vagabond/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/spec/cookbooks/vagabond/metadata.rb -------------------------------------------------------------------------------- /spec/cookbooks/vagabond/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/spec/cookbooks/vagabond/recipes/default.rb -------------------------------------------------------------------------------- /spec/file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/spec/file_spec.rb -------------------------------------------------------------------------------- /spec/gem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/spec/gem_spec.rb -------------------------------------------------------------------------------- /spec/package_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/spec/package_spec.rb -------------------------------------------------------------------------------- /spec/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfarr/vagabond/HEAD/spec/service_spec.rb --------------------------------------------------------------------------------