diff --git a/CHANGELOG.md b/CHANGELOG.md index bdfcc54de1..6bb56d20d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Latest update: 2018-06-01 ### Feature Request +- [PR #1141](https://github.com/stympy/faker/pull/1141) Add Faker::Coffee.intensifier [@oyeanuj](https://github.com/oyeanuj) - [PR #1260](https://github.com/stympy/faker/pull/1260) Add Faker::Auto features to Faker::Vehicle [@mrstebo](https://github.com/mrstebo) - [PR #1259](https://github.com/stympy/faker/pull/1259) Add the ability to add separators to emails. [@aamarill](https://github.com/aamarill) - [PR #1064](https://github.com/stympy/faker/pull/1064) Add Faker::Markdown.sandwich [@russellschmidt](https://github.com/russellschmidt) diff --git a/doc/coffee.md b/doc/coffee.md index 352b938c6e..d8bf0552a6 100644 --- a/doc/coffee.md +++ b/doc/coffee.md @@ -8,4 +8,6 @@ Faker::Coffee.origin #=> "Antigua, Guatemala" Faker::Coffee.variety #=> "Pacas" Faker::Coffee.notes #=> "balanced, silky, marzipan, orange-creamsicle, bergamot" + +Faker::Coffee.intensifier #=> "quick" ``` diff --git a/lib/faker/coffee.rb b/lib/faker/coffee.rb index e43481022a..dd12cd7ae2 100644 --- a/lib/faker/coffee.rb +++ b/lib/faker/coffee.rb @@ -19,6 +19,10 @@ def notes parse('coffee.notes') end + def intensifier + fetch('coffee.intensifier') + end + private def search_format(key)