Jennifer
What is Jennifer?
Jennifer is an ActiveRecord pattern for Crystal with great query DSL and migration mechanism.
Installing Jennifer for Maze
Generate a normal maze app
maze new {project}Update your project shard.yml
Add this to your application's
# Add the following dependencies
jennifer:
github: imdrasil/jennifer.cr
sam:
github: imdrasil/sam.crChoose one of existing adapters for your db: mysql or postgres.
Then in the console
Setup your database information
Create a jennifer.cr under the /config directory
Create a sam.cr in {project/src}
Jennifer uses Sam for running tasks pertinent to ORM operations. Sam is a Make-like utility which allows to specify tasks like Ruby's Rake do using plain Crystal. For how to use Sam visit the Github repository https://github.com/imdrasil/sam.cr
Edit your src/{project}.cr file
This should be done before you load your application configurations (or at least models). With Maze this is very easy. Also the order is very important the adapter should come before Jennifer.
You're all set with the configuration. Next using Jennifer Migrations and Models.
Last updated