From 3f75870b27ece363dff9e9a932407dabe919a14f Mon Sep 17 00:00:00 2001 From: "Haneysmith, Nathan" Date: Thu, 23 Apr 2015 13:01:30 -0700 Subject: [PATCH] readme updates --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c9acef3..244737d 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,14 @@ Manually create a MySQL RDS instance and update attributes/default.rb Manually create the sessions table in mysql: yum install mysql +``` CREATE TABLE `session` ( `key` CHAR(16) NOT NULL, `data` BLOB, `expiry` INT(11) UNSIGNED NOT NULL, PRIMARY KEY (`key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +``` ... ## Usage @@ -169,6 +171,7 @@ directory (.e.g lib/berksfile/myoverride.berks) Put each local snippet in a file with an extension of .guard in the lib/guardfile directory (.e.g lib/guardfile/myoverride.berks) +``` guard :rake, task: :coverage do watch(%r{^spec/foo/.+_spec\.rb$}) watch(%r{^spec/spec_helper\.rb$}) @@ -179,6 +182,7 @@ directory (.e.g lib/guardfile/myoverride.berks) watch(%r{^recipes/.+\.rb$}) watch(%r{^metadata\.rb$}) end +``` ## Author