https://github.com/andyw8/kitchen_measures
A simple value object for dealing with measures used in cooking and baking.
https://github.com/andyw8/kitchen_measures
Last synced: 3 months ago
JSON representation
A simple value object for dealing with measures used in cooking and baking.
- Host: GitHub
- URL: https://github.com/andyw8/kitchen_measures
- Owner: andyw8
- Created: 2016-03-19T13:52:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-03T12:45:21.000Z (about 9 years ago)
- Last Synced: 2024-04-24T02:02:45.946Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KitchenMeasures
This gem provides a simple [value object][] for dealing with measures used in
cooking and baking. Behind the scenes it uses [unitwise]. The main difference in
behaviour is support for unitless measures which are often found in recipes, such
as "2 eggs" or "1 large carrot".## Installation
Add this line to your application's Gemfile:
```ruby
gem 'kitchen_measures'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install kitchen_measures
## Usage
```ruby
flour_measure = KitchenMeasures::Measure.with_unit(500, "g")
sugar_measure = KitchenMeasures::Measure.with_unit(2, "oz")
water_measure = KitchenMeasures::Measure.with_unit(1, "l")
eggs_measure = KitchenMeasures::Measure.without_unit(6)flour_measure.to_s #=> 1000 g
sugar_measure.to_s #=> 2 oz
water_measure.to_s #=> 2 l
eggs_measure.to_s #=> 12flour_measure.weight? #=> true
flour_measure.volume? #=> false
eggs_measure.weight? #=> false
eggs_measure.volume? #=> false
eggs_measure.volume? #=> falseflour_measure.comparable_with?(sugar_measure) #=> true
flour_measure.comparable_with?(water_measure) #=> false
```## Rails Support
KitchenMeasures isn't coupled to Rails, but there a couple of methods provided
for convenience.`.from_db_attrs` accepts a quantity, and an unit. If the unit is nil, the measure will
be treated as unitless.`#to_db_attrs` does the opposite. It converts a measure to has so that it can be
persisted to the database. This will also ensure units are stored in a
consistent way, e.g. "kg" instead of "kilogram".## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/andyw8/kitchen_measures.
[value object]: https://en.wikipedia.org/wiki/Value_object
[unitwise]: https://github.com/joshwlewis/unitwise