Skip to content

Commit

Permalink
[COOK-522] remove non-ASCII characters from application recipe
Browse files Browse the repository at this point in the history
Prevents JSON parsing exception on systems with default locale.
  • Loading branch information
bfritz committed Apr 25, 2011
1 parent bf33af7 commit a4d4ba6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions application/README.md
Expand Up @@ -259,17 +259,17 @@ CakePHP:
The template used to render this `local_settings.php` file is assumed to be provided in an application specific cookbook named after the application being deployed. For example if you were deploying code for an application named `mediawiki` you would create a cookbook named `mediawiki` and in that cookbook place a template named `LocalSettings.php.erb`:

mediawiki/
├── files
└── default
└── schema.sql
├── metadata.rb
├── README.md
├── recipes
├── db_bootstrap.rb
└── default.rb
└── templates
└── default
└── LocalSettings.php.erb
+-- files
| +-- default
| +-- schema.sql
+-- metadata.rb
+-- README.md
+-- recipes
| +-- db_bootstrap.rb
| +-- default.rb
+-- templates
+-- default
+-- LocalSettings.php.erb

The template will be passed the following variables which can be used to dynamically fill values in the ERB:

Expand Down

0 comments on commit a4d4ba6

Please sign in to comment.