Skip to content

Commit

Permalink
readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tmonk42 committed Apr 23, 2015
1 parent a95f28e commit 3f75870
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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$})
Expand All @@ -179,6 +182,7 @@ directory (.e.g lib/guardfile/myoverride.berks)
watch(%r{^recipes/.+\.rb$})
watch(%r{^metadata\.rb$})
end
```

## Author

Expand Down

0 comments on commit 3f75870

Please sign in to comment.