├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile └── spec ├── foo.bar.com_spec.rb ├── localhost_spec.rb ├── properties.yml ├── shared ├── apache │ └── init.rb └── db │ └── init.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .rspec 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/Rakefile -------------------------------------------------------------------------------- /spec/foo.bar.com_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/spec/foo.bar.com_spec.rb -------------------------------------------------------------------------------- /spec/localhost_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/spec/localhost_spec.rb -------------------------------------------------------------------------------- /spec/properties.yml: -------------------------------------------------------------------------------- 1 | foo.bar.com: 2 | :server_id: 1 -------------------------------------------------------------------------------- /spec/shared/apache/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/spec/shared/apache/init.rb -------------------------------------------------------------------------------- /spec/shared/db/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/spec/shared/db/init.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyisbeautiful/serverspec_examples/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------