Brewery

For now, some formulas and tools for Homebrewing.

Installation

Add this line to your application's Gemfile:

gem 'brewery'

And then execute:

$ bundle

Or install it yourself as:

$ gem install brewery

Usage

Tools

Refractometer

american_ipa = Brewery.guides(:bjcp).find(id: '14B')

tool = Brewery.tools :refractometer do
  style american_ipa

  original_brix 17
  final_brix 7.5
end

You can search style by ID

tool = Brewery.tools :refractometer do
  style '14B'

  original_brix 17
  final_brix 7.5
end

That's it!

tool.original_gravity
# => 1.0706483000102098

tool.final_gravity
# => 1.0049822062500002

tool.alcohol_by_weight
# => 6.734352775327011

tool.alcohol_by_volume
# => 8.523809458203969

Beer Style Guidelines

BJCP

guide = Brewery.guides :bjcp
guide.styles
guide.categories

style = guide.find_style(id: '14B')
style.name
# => American IPA

category = guide.find_category(id: '14')
category.name
# => India Pale Ale(IPA)

category.styles

You can see the categories and styles here

Brewers Association (BA)

Comming soon.

Ingredients

Fermentables

fermentables = Brewery.ingredients :fermentables
fermentables.count
# => 187

search = fermentables.find_by(name: 'pale ale')
search.first.name
# => "German Pale Ale Malt"

Hops

hops = Brewery.ingredients :hops
hops.count
# => 85

search = hops.find_by(name: 'magnum')
search.first.name
# => "German Hallertauer Magnum"

Yeast

yeasts = Brewery.ingredients :yeasts
yeasts.count
# => 208

search = yeasts.find_by(name: 'us-05')
search.first.name
# => "DCL US-05 (formerly US-56) SafAle"

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request