├── .chef └── knife.rb ├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── Cheffile ├── Cheffile.lock ├── Gemfile ├── Gemfile.lock ├── README.md ├── Vagrantfile ├── data_bags └── .gitkeep ├── nodes ├── .gitkeep ├── localhost.json.example └── vagrant.json.example ├── roles └── .gitkeep └── site-cookbooks └── .gitkeep /.chef/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/.chef/knife.rb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | chef-rails -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.2.2 -------------------------------------------------------------------------------- /Cheffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/Cheffile -------------------------------------------------------------------------------- /Cheffile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/Cheffile.lock -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/Vagrantfile -------------------------------------------------------------------------------- /data_bags/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/localhost.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/nodes/localhost.json.example -------------------------------------------------------------------------------- /nodes/vagrant.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidlabs/chef-rails/HEAD/nodes/vagrant.json.example -------------------------------------------------------------------------------- /roles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site-cookbooks/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------