diff options
author | Andrew Ferk <andrewferk@gmail.com> | 2010-09-18 09:46:32 -0500 |
---|---|---|
committer | Andrew Ferk <andrewferk@gmail.com> | 2010-09-18 09:46:32 -0500 |
commit | 8050d9490706c88ea180fe17699e645981715d57 (patch) | |
tree | 213847c41c09abf3e786f539ca6436e222e4a62d /railties/guides/source/plugins.textile | |
parent | a2fddff035112c83caaeed8803d94b2037f4a21a (diff) | |
download | rails-8050d9490706c88ea180fe17699e645981715d57.tar.gz rails-8050d9490706c88ea180fe17699e645981715d57.tar.bz2 rails-8050d9490706c88ea180fe17699e645981715d57.zip |
Removed leading : from database.yml file
Diffstat (limited to 'railties/guides/source/plugins.textile')
-rw-r--r-- | railties/guides/source/plugins.textile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/railties/guides/source/plugins.textile b/railties/guides/source/plugins.textile index c358e0e1a5..9ecedc527d 100644 --- a/railties/guides/source/plugins.textile +++ b/railties/guides/source/plugins.textile @@ -128,26 +128,26 @@ h4. Test Setup # vendor/plugins/yaffle/test/database.yml sqlite: - :adapter: sqlite - :database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite.db + adapter: sqlite + database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite.db sqlite3: - :adapter: sqlite3 - :database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite3.db + adapter: sqlite3 + database: vendor/plugins/yaffle/test/yaffle_plugin.sqlite3.db postgresql: - :adapter: postgresql - :username: postgres - :password: postgres - :database: yaffle_plugin_test - :min_messages: ERROR + adapter: postgresql + username: postgres + password: postgres + database: yaffle_plugin_test + min_messages: ERROR mysql: - :adapter: mysql - :host: localhost - :username: root - :password: password - :database: yaffle_plugin_test + adapter: mysql + host: localhost + username: root + password: password + database: yaffle_plugin_test </yaml> For this guide you'll need 2 tables/models, Hickwalls and Wickwalls, so add the following: |