README.md in smallvictories-0.0.17 vs README.md in smallvictories-0.0.18
- old
+ new
@@ -18,32 +18,20 @@
includes folder.
You don't have to use a layout file if you don't want to, the files will still
be copied to the destination folder.
-[Sprite Factory](https://github.com/jakesgordon/sprite-factory) looks for image
-files in the sprite folder and generates a single sprite png and sprite
-stylesheet.
-
[Guard LiveReload](https://github.com/guard/guard-livereload) is used to notify
the browser to automatically reload. It needs to be used with
the [LiveReload Safari/Chrome/Firefox extension](http://livereload.com/extensions#installing-sections).
## Installation
```
gem install smallvictories
```
-To use the [Sprite Factory](https://github.com/jakesgordon/sprite-factory) to
-generate Sprite CSS you will need to install image magick which you can do with
-homebrew:
-
-```
-brew install imagemagick
-```
-
## Commands
### Bootstrap
Sets up default files in a folder.
@@ -101,19 +89,16 @@
└── Small Victories
└── Your Site
└── _sv
│ ├── _includes
│ │ └── _head.liquid
- │ ├── _sprite
│ ├── _layout.liquid
│ ├── applscation.css
│ ├── application.js
│ ├── index.liquid
- │ └── sprite.css
├── _sv_custom.css
├── _sv_custom.js
- ├── _sv_sprite.png
└── index.html
```
You would then run `sv watch` from within `Your Site` and Small Victories will
watch for changes in `_sv` and compile them to the `Your Site` folder.
@@ -164,10 +149,9 @@
+ `layout`: Liquid layout file to render all other html and liquid files through.
+ `includes`: Directory where liquid rendered should expect to find snippets.
+ `compile_css`: Should Small Victories compile Sass/css? Default is true.
+ `compile_js`: Should Small Victories compile CoffeeScript/JavaScript? Default is true.
+ `compile_html`: Should Small Victories compile HTML? Default is true.
-+ `compile_sprite`: Should Small Victories compile Sprite? Default is true.
### Default Configuration
```yaml
source: '_sv'