* Added `showcase` feature to create a fancy-looking 3D reflection to showcase your cards. Documented, tested, and added a sample for it.
* Added a basic Rakefile, documented in README.
* Some internal refactoring and better testing around layouts
* Some internal refactoring, better testing, and more documentation with layouts
## v0.1.0
* Added `save_sheet` command that saves a range into PNG sheets, complete with trim, gap, margin, columns, and sometimes automagically computed rows. See samples/saves.rb.
Furthermore, if you want to extend multiple parents, it looks like this:
```yaml
socrates:
x: 100
aristotle:
y: 200
aristotle:
extends:
- socrates
- plato
x: += 50
```
### Multiple layout files
Squib also supports the combination of multiple layout files. As shown in the above example, if you provide an `Array` of files then Squib will merge them sequentially. Colliding keys will be completely re-defined by the later file. Extends is processed after _each file_. YAML merge keys are NOT supported across multiple files - use extends instead. Here's a demonstrative example: