- 12 cup Chemex
- 37 Grams of unground coffee beans
- 200 Grams of ice
- 400 Grams of hot / just off boiling water
- Start boiling water
# Example with basic types | |
--- | |
hash: | |
string: some text | |
number: 12345 | |
array_of_bool: [on, off, true, false, yes, no] | |
ruby symbol: :symbol | |
array: | |
- item one | |
- item two |
# Jekyll Rake tasks | |
desc 'create new post or page. args: type (post, page), title, future (# of days)' | |
# rake new type=(page|post) future=0 title="New post title goes here" slug="slug-override-title" | |
task :new do | |
require 'rubygems' | |
require 'chronic' | |
type = ENV["type"] || "post" | |
title = ENV["title"] || "New Title" |