brewery_db 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +1 -0
  4. data/CHANGELOG.md +4 -0
  5. data/README.md +5 -4
  6. data/brewery_db.gemspec +2 -0
  7. data/lib/brewery_db/resources/beers.rb +4 -0
  8. data/lib/brewery_db/version.rb +1 -1
  9. data/spec/brewery_db/client_spec.rb +23 -12
  10. data/spec/brewery_db/config_spec.rb +9 -5
  11. data/spec/brewery_db/resource_spec.rb +1 -1
  12. data/spec/brewery_db/resources/beers_spec.rb +14 -3
  13. data/spec/brewery_db/resources/breweries_spec.rb +1 -1
  14. data/spec/brewery_db/resources/brewery_spec.rb +2 -2
  15. data/spec/brewery_db/resources/categories_spec.rb +1 -1
  16. data/spec/brewery_db/resources/fermentables_spec.rb +1 -1
  17. data/spec/brewery_db/resources/fluid_size_spec.rb +1 -1
  18. data/spec/brewery_db/resources/hops_spec.rb +1 -1
  19. data/spec/brewery_db/resources/locations_spec.rb +1 -1
  20. data/spec/brewery_db/resources/search_spec.rb +5 -5
  21. data/spec/brewery_db/resources/styles_spec.rb +1 -1
  22. data/spec/brewery_db/resources/yeasts_spec.rb +1 -1
  23. data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +160 -84
  24. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_message_in_the_error_message.yml +9 -9
  25. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_status_in_the_error_message.yml +9 -9
  26. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +9 -9
  27. data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/returns_the_data.yml +10 -10
  28. data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +228 -244
  29. data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +10 -10
  30. data/spec/fixtures/BreweryDB_Resources_Beers/_random/fetches_a_random_beer.yml +53 -0
  31. data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +46 -66
  32. data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +10 -10
  33. data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +13 -12
  34. data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +10 -10
  35. data/spec/fixtures/BreweryDB_Resources_Fermentables/_all/fetches_all_of_the_fermentables_at_once.yml +15 -15
  36. data/spec/fixtures/BreweryDB_Resources_Fermentables/_find/fetches_only_the_fermentable_asked_for.yml +13 -13
  37. data/spec/fixtures/BreweryDB_Resources_FluidSize/_all/fetches_all_of_the_fluid_sizes_at_once.yml +16 -14
  38. data/spec/fixtures/BreweryDB_Resources_FluidSize/_find/fetches_only_the_fluid_size_asked_for.yml +12 -12
  39. data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +10 -10
  40. data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +10 -10
  41. data/spec/fixtures/BreweryDB_Resources_Hops/_all/fetches_all_of_the_hops_at_once.yml +15 -15
  42. data/spec/fixtures/BreweryDB_Resources_Hops/_find/fetches_only_the_hop_asked_for.yml +13 -13
  43. data/spec/fixtures/BreweryDB_Resources_Locations/_all/fetches_all_of_the_breweries_at_once.yml +122 -58
  44. data/spec/fixtures/BreweryDB_Resources_Locations/_find/fetches_only_the_location_asked_for.yml +10 -10
  45. data/spec/fixtures/BreweryDB_Resources_Menu/_beer_availability/fetches_all_of_the_beer_availabilities_at_once.yml +12 -12
  46. data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +366 -411
  47. data/spec/fixtures/BreweryDB_Resources_Search/_upc/for_an_existing_upc_code/returns_a_collection_with_the_matched_beer.yml +11 -11
  48. data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +63 -24
  49. data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +10 -10
  50. data/spec/fixtures/BreweryDB_Resources_Yeasts/_all/fetches_all_of_the_yeasts_at_once.yml +14 -14
  51. data/spec/fixtures/BreweryDB_Resources_Yeasts/_find/fetches_only_the_yeast_asked_for.yml +13 -13
  52. data/spec/spec_helper.rb +2 -0
  53. metadata +52 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c41d08cf80ce37ceecbd402e664ea0822d2fe19a
4
- data.tar.gz: fd57ff883a8ad9ffb8cc2f51847bd6e5fc155c88
3
+ metadata.gz: a5f0d0f0361003eca2de4788d61b1f9d577eda4e
4
+ data.tar.gz: 9324d1028bffc6098c1bdc5f9d6d3cd44f5e657f
5
5
  SHA512:
6
- metadata.gz: 507531603d79ced7a95b1f15dc1a8f6ce6423b3d975b71aae978151558171d3bc7a76b9ebdb66985476206f4ed893dbd82832ccb660cead06c9132ea84b9814a
7
- data.tar.gz: 973b7b4c6fa87af1596b5a0601d34c94a15cef7d62cb8da7737168b042b7abdd551fbe0ba0ba47dc97a894a59585772411951ca7a10388f6eafda0afa5784865
6
+ metadata.gz: b7cb814c211c8e6713f7220fc834a1bbaec5f9cb9d8c7b5dff4cd66ab909921c579b2875c6d1286c51a6c25a81d1b097715eba5b02201cde8d557a647e7b8248
7
+ data.tar.gz: b12cf66a1fe5ae9b18e64334c41601b1ee6a6fc80d282af9ec9083c3bfa9725e22855a9fed1801419fcd58952e181c2702832bb6cb7be00c884f5916da68700a
data/.gitignore CHANGED
@@ -3,6 +3,7 @@
3
3
  *.swp
4
4
  .bundle
5
5
  .config
6
+ .env
6
7
  .rbenv-version
7
8
  .rvmrc
8
9
  .yardoc
@@ -5,5 +5,6 @@ rvm:
5
5
  - 1.9.3
6
6
  - 2.0.0
7
7
  - 2.1.0
8
+ - 2.1.1
8
9
  - jruby-19mode
9
10
  - rbx
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.4 (2014-04-07)
4
+
5
+ * Add support for `beer/random` endpoint. ([Steven Harman][stevenharman])
6
+
3
7
  ## 0.2.3 (2014-02-21)
4
8
 
5
9
  * Add support for `search/upc` endpoint. ([Matt Griffin][betamatt])
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # BreweryDB
2
2
 
3
- [![Build Status][travis]][travis-web]
4
-
5
- [travis]: https://secure.travis-ci.org/tylerhunt/brewery_db.png
6
- [travis-web]: http://travis-ci.org/tylerhunt/brewery_db
3
+ [![Gem Version](http://img.shields.io/gem/v/brewery_db.svg)](https://rubygems.org/gems/brewery_db)
4
+ [![Build Status](https://img.shields.io/travis/tylerhunt/brewery_db.svg)](https://travis-ci.org/tylerhunt/brewery_db)
5
+ [![Code Climate](http://img.shields.io/codeclimate/github/tylerhunt/brewery_db.svg)](https://codeclimate.com/github/tylerhunt/brewery_db)
6
+ [![Dependency Status](https://img.shields.io/gemnasium/tylerhunt/brewery_db.svg)](https://gemnasium.com/tylerhunt/brewery_db)
7
7
 
8
8
  A Ruby library for using the [BreweryDB][] API.
9
9
 
@@ -73,6 +73,7 @@ Once an API key has been set, resources can be called on the client instance.
73
73
  ```ruby
74
74
  brewery_db.beers.all(abv: '5.5')
75
75
  brewery_db.beers.find('vYlBZQ')
76
+ brewery_db.beers.random
76
77
 
77
78
  brewery_db.breweries.all(established: 2006)
78
79
  brewery_db.breweries.find('d1zSa7')
@@ -13,9 +13,11 @@ Gem::Specification.new do |gem|
13
13
  gem.add_dependency 'faraday', '~> 0.8.0'
14
14
  gem.add_dependency 'faraday_middleware', '~> 0.8'
15
15
  gem.add_dependency 'hashie', '>= 1.1', '< 3'
16
+ gem.add_development_dependency 'dotenv', '~> 0.10'
16
17
  gem.add_development_dependency 'pry'
17
18
  gem.add_development_dependency 'rspec', '~> 2.14'
18
19
  gem.add_development_dependency 'vcr', '~> 2.0'
20
+ gem.add_development_dependency 'rake', '~> 10.2'
19
21
 
20
22
  gem.files = `git ls-files`.split($\)
21
23
  gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
@@ -8,6 +8,10 @@ module BreweryDB
8
8
  def find(id, params={})
9
9
  get('beer/%s' % id, params).data
10
10
  end
11
+
12
+ def random(params={})
13
+ find('random', params)
14
+ end
11
15
  end
12
16
  end
13
17
  end
@@ -1,3 +1,3 @@
1
1
  module BreweryDB
2
- VERSION = '0.2.3'
2
+ VERSION = '0.2.4'
3
3
  end
@@ -46,18 +46,29 @@ describe BreweryDB::Client do
46
46
  end
47
47
  end
48
48
 
49
- its(:beers) { should be_a(BreweryDB::Resources::Beers) }
50
- its(:breweries) { should be_a(BreweryDB::Resources::Breweries) }
51
- its(:categories) { should be_a(BreweryDB::Resources::Categories) }
52
- its(:fermentables) { should be_a(BreweryDB::Resources::Fermentables) }
53
- its(:fluid_size) { should be_a(BreweryDB::Resources::FluidSize) }
54
- its(:glassware) { should be_a(BreweryDB::Resources::Glassware) }
55
- its(:hops) { should be_a(BreweryDB::Resources::Hops) }
56
- its(:locations) { should be_a(BreweryDB::Resources::Locations) }
57
- its(:menu) { should be_a(BreweryDB::Resources::Menu) }
58
- its(:search) { should be_a(BreweryDB::Resources::Search) }
59
- its(:styles) { should be_a(BreweryDB::Resources::Styles) }
60
- its(:yeasts) { should be_a(BreweryDB::Resources::Yeasts) }
49
+ it { expect(client.beers).to be_a(BreweryDB::Resources::Beers) }
50
+
51
+ it { expect(client.breweries).to be_a(BreweryDB::Resources::Breweries) }
52
+
53
+ it { expect(client.categories).to be_a(BreweryDB::Resources::Categories) }
54
+
55
+ it { expect(client.fermentables).to be_a(BreweryDB::Resources::Fermentables) }
56
+
57
+ it { expect(client.fluid_size).to be_a(BreweryDB::Resources::FluidSize) }
58
+
59
+ it { expect(client.glassware).to be_a(BreweryDB::Resources::Glassware) }
60
+
61
+ it { expect(client.hops).to be_a(BreweryDB::Resources::Hops) }
62
+
63
+ it { expect(client.locations).to be_a(BreweryDB::Resources::Locations) }
64
+
65
+ it { expect(client.menu).to be_a(BreweryDB::Resources::Menu) }
66
+
67
+ it { expect(client.search).to be_a(BreweryDB::Resources::Search) }
68
+
69
+ it { expect(client.styles).to be_a(BreweryDB::Resources::Styles) }
70
+
71
+ it { expect(client.yeasts).to be_a(BreweryDB::Resources::Yeasts) }
61
72
 
62
73
  it { expect(client.brewery('KlSsWY')).to be_a(BreweryDB::Resources::Brewery) }
63
74
  end
@@ -4,11 +4,15 @@ describe BreweryDB::Config do
4
4
  subject(:config) { described_class.new }
5
5
 
6
6
  context 'defaults' do
7
- its(:adapter) { should eq Faraday.default_adapter }
8
- its(:api_key) { should be_nil }
9
- its(:base_uri) { should eq described_class::BASE_URI }
10
- its(:timeout) { should eq described_class::TIMEOUT }
11
- its(:user_agent) { should eq described_class::USER_AGENT }
7
+ it { expect(config.adapter).to eq(Faraday.default_adapter) }
8
+
9
+ it { expect(config.api_key).to be_nil }
10
+
11
+ it { expect(config.base_uri).to eq(described_class::BASE_URI) }
12
+
13
+ it { expect(config.timeout).to eq(described_class::TIMEOUT) }
14
+
15
+ it { expect(config.user_agent).to eq(described_class::USER_AGENT) }
12
16
  end
13
17
 
14
18
  context '#adapter=' do
@@ -29,7 +29,7 @@ describe BreweryDB::Resource, :resource do
29
29
 
30
30
  context 'a list of resources' do
31
31
  it 'can be enumerated' do
32
- expect(resource.list.inject(0) { |tally, r| tally + 1 }).to eq(66)
32
+ expect(resource.list.inject(0) { |tally, r| tally + 1 }).to eq(74)
33
33
  end
34
34
  end
35
35
 
@@ -3,19 +3,30 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe BreweryDB::Resources::Beers, :resource do
6
+ subject(:beers_resource) { described_class.new(config) }
7
+
6
8
  context '#all', :vcr do
7
- let(:response) { described_class.new(config).all(abv: '5.5') }
9
+ let(:response) { beers_resource.all(abv: '5.5') }
8
10
 
9
11
  it 'fetches all of the beers at once' do
10
- expect(response.count).to eq(807)
12
+ expect(response.count).to eq(985)
11
13
  end
12
14
  end
13
15
 
14
16
  context '#find', :vcr do
15
- let(:response) { described_class.new(config).find('99Uj1n') }
17
+ let(:response) { beers_resource.find('99Uj1n') }
16
18
 
17
19
  it 'fetches only the beer asked for' do
18
20
  expect(response.id).to eq('99Uj1n')
19
21
  end
20
22
  end
23
+
24
+ context '#random', :vcr do
25
+ let(:response) { beers_resource.random(hasLabels: 'Y') }
26
+
27
+ it 'fetches a random beer' do
28
+ expect(response.status).to eq('verified')
29
+ expect(response.labels.size).to eq(3)
30
+ end
31
+ end
21
32
  end
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Breweries, :resource do
7
7
  let(:response) { described_class.new(config).all(established: 2006) }
8
8
 
9
9
  it 'fetches all of the breweries at once' do
10
- expect(response.count).to eq(66)
10
+ expect(response.count).to eq(74)
11
11
  end
12
12
  end
13
13
 
@@ -10,7 +10,7 @@ describe BreweryDB::Resources::Brewery do
10
10
 
11
11
  context 'without params' do
12
12
  it 'returns the beers for a brewery' do
13
- brewery.stub(:get).with('brewery/KlSsWY/beers', {}) { response }
13
+ allow(brewery).to receive(:get).with('brewery/KlSsWY/beers', {}) { response }
14
14
  expect(brewery.beers).to eq(:some_beers)
15
15
  end
16
16
  end
@@ -19,7 +19,7 @@ describe BreweryDB::Resources::Brewery do
19
19
  let(:params) { double }
20
20
 
21
21
  it 'returns the beers for a brewery with params' do
22
- brewery.stub(:get).with('brewery/KlSsWY/beers', params) { response }
22
+ allow(brewery).to receive(:get).with('brewery/KlSsWY/beers', params) { response }
23
23
  expect(brewery.beers(params)).to eq(:some_beers)
24
24
  end
25
25
  end
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Categories, :resource do
7
7
  let(:response) { described_class.new(config).all }
8
8
 
9
9
  it 'fetches all of the cagtegories at once' do
10
- expect(response.length).to eq(12)
10
+ expect(response.length).to eq(13)
11
11
  end
12
12
  end
13
13
 
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Fermentables, :resource do
7
7
  let(:response) { described_class.new(config).all }
8
8
 
9
9
  it 'fetches all of the fermentables at once' do
10
- expect(response.count).to eq(220)
10
+ expect(response.count).to eq(222)
11
11
  end
12
12
  end
13
13
 
@@ -5,7 +5,7 @@ describe BreweryDB::Resources::FluidSize, :resource do
5
5
  let(:response) { described_class.new(config).all }
6
6
 
7
7
  it 'fetches all of the fluid sizes at once' do
8
- expect(response.count).to eq(17)
8
+ expect(response.count).to eq(19)
9
9
  end
10
10
  end
11
11
 
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Hops, :resource do
7
7
  let(:response) { described_class.new(config).all }
8
8
 
9
9
  it 'fetches all of the hops at once' do
10
- expect(response.count).to eq(165)
10
+ expect(response.count).to eq(166)
11
11
  end
12
12
  end
13
13
 
@@ -5,7 +5,7 @@ describe BreweryDB::Resources::Locations, :resource do
5
5
  let(:response) { described_class.new(config).all(locality: 'San Francisco') }
6
6
 
7
7
  it 'fetches all of the breweries at once' do
8
- expect(response.count).to eq(19)
8
+ expect(response.count).to eq(21)
9
9
  end
10
10
  end
11
11
 
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Search, :resource do
7
7
  let(:response) { described_class.new(config).all(q: 'IPA') }
8
8
 
9
9
  it 'fetches all of the search results at once' do
10
- expect(response.count).to eq(6260)
10
+ expect(response.count).to eq(7202)
11
11
  end
12
12
  end
13
13
 
@@ -22,19 +22,19 @@ describe BreweryDB::Resources::Search, :resource do
22
22
 
23
23
  specify do
24
24
  results = double(:results)
25
- search.stub(:all).with(type: type, q: 'IPA') { results }
25
+ allow(search).to receive(:all).with(type: type, q: 'IPA') { results }
26
26
  expect(search.send(method, q: 'IPA')).to eq(results)
27
27
  end
28
28
  end
29
29
  end
30
30
 
31
- context "#upc", :vcr do
31
+ context '#upc', :vcr do
32
32
  subject(:search) { described_class.new(config) }
33
33
 
34
- context "for an existing upc code" do
34
+ context 'for an existing upc code' do
35
35
  let(:upc) { '030613000043' }
36
36
 
37
- it "returns a collection with the matched beer" do
37
+ it 'returns a collection with the matched beer' do
38
38
  expect(search.upc(code: upc).map(&:id)).to eq(['LVjHK1'])
39
39
  end
40
40
  end
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Styles, :resource do
7
7
  let(:response) { described_class.new(config).all }
8
8
 
9
9
  it 'fetches all of the styles at once' do
10
- expect(response.count).to eq(157)
10
+ expect(response.count).to eq(160)
11
11
  end
12
12
  end
13
13
 
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Yeasts, :resource do
7
7
  let(:response) { described_class.new(config).all }
8
8
 
9
9
  it 'fetches all of the yeasts at once' do
10
- expect(response.count).to eq(403)
10
+ expect(response.count).to eq(404)
11
11
  end
12
12
  end
13
13
 
@@ -8,40 +8,40 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.2.0
11
+ - BreweryDB Ruby Gem 0.2.3
12
12
  response:
13
13
  status:
14
14
  code: 200
15
15
  message:
16
16
  headers:
17
+ content-type:
18
+ - application/json
17
19
  date:
18
- - Mon, 22 Jul 2013 00:05:45 GMT
20
+ - Mon, 31 Mar 2014 20:13:20 GMT
19
21
  server:
20
- - Apache/2.2.24 (Amazon)
22
+ - Apache/2.2.26 (Amazon)
23
+ vary:
24
+ - Accept-Encoding
21
25
  x-powered-by:
22
- - PHP/5.3.26
26
+ - PHP/5.3.28
23
27
  x-ratelimit-limit:
24
28
  - Unlimited
25
29
  x-ratelimit-remaining:
26
30
  - Unlimited
27
- vary:
28
- - Accept-Encoding
29
31
  content-length:
30
- - '13953'
32
+ - '13473'
31
33
  connection:
32
- - close
33
- content-type:
34
- - application/json
34
+ - Close
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"currentPage":1,"numberOfPages":2,"totalResults":66,"data":[{"id":"snQlvg","name":"10
37
+ string: '{"currentPage":1,"numberOfPages":2,"totalResults":74,"data":[{"id":"snQlvg","name":"10
38
38
  Barrel Brewing Company","description":"We brew into a 10 Barrel Brewhouse,
39
39
  giving us the freedom to experiment with our recipes in order to produce the
40
40
  highest quality of beer that we can. This isn\u2019t just any 10 Barrel brewhouse
41
41
  though, it\u2019s a state of the art system that allows us to blend new technology
42
42
  with the tradition of craft fundamentals. In other words we can\u2019t produce
43
43
  a TON of beer, but we can make it the highest quality.","website":"http:\/\/www.10barrel.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/snQlvg\/upload_qMSc0A-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/snQlvg\/upload_qMSc0A-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/snQlvg\/upload_qMSc0A-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
44
- 02:41:43","updateDate":"2012-12-03 11:44:27"},{"id":"QtDyxR","name":"612 Brew","description":"At
44
+ 02:41:43","updateDate":"2013-10-12 01:15:45"},{"id":"QtDyxR","name":"612 Brew","description":"At
45
45
  612Brew, the newest beer company in the 612, we want to make your newest favorite
46
46
  beer you\u2019ve never had.\r\n\r\nWith our operation moving to a larger location
47
47
  in Uptown, we have the opportunity to make and test out much larger batches
@@ -111,7 +111,7 @@ http_interactions:
111
111
  We believe in rustic, natural quality over fancy-pants snobbery. Our marketing
112
112
  and branding efforts try to reinforce this and we choose to market by talking
113
113
  to folks instead of blaring messages through mass-market advertising.","website":"http:\/\/beaus.ca\/","established":"2006","isOrganic":"Y","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OR1ggJ\/upload_due5zU-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OR1ggJ\/upload_due5zU-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OR1ggJ\/upload_due5zU-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-03-21
114
- 10:33:23","updateDate":"2013-03-21 10:42:31"},{"id":"pwfPCD","name":"Big Boss
114
+ 10:33:23","updateDate":"2013-09-15 18:47:50"},{"id":"pwfPCD","name":"Big Boss
115
115
  Brewing Company","description":"Big Boss Brewing Company was started in 2006
116
116
  and shipped its first beer in the 2nd quarter of 2007 in the triangle area
117
117
  of North Carolina. It was formed as collaboration between Geoff Lamb, a UNC
@@ -154,7 +154,7 @@ http_interactions:
154
154
  enterprise of this type, we seek to realize an alternative business model
155
155
  for brewpubs and to help expand the co-operative movement into new and innovative
156
156
  areas \u2014 both in Austin and around the world.","website":"http:\/\/www.blackstar.coop\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
157
- 02:41:46","updateDate":"2012-06-27 13:53:30"},{"id":"GKA5lt","name":"Brasseurs
157
+ 02:41:46","updateDate":"2013-08-14 13:52:40"},{"id":"GKA5lt","name":"Brasseurs
158
158
  du Hameau","description":"The Brewers of Hamlet took up residence in the village
159
159
  to make a craft beer quality.\r\nThe term nano-brewery is a project which
160
160
  initially is modest in terms of quantity, about 750 liters per week. This
@@ -175,7 +175,9 @@ http_interactions:
175
175
  in Fraserburgh produced its first brew in April 2007. It is Scotland''s largest
176
176
  independently owned brewery producing about 120,000 bottles per month for
177
177
  export all over the world.","website":"http:\/\/brewdog.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_tn2qSA-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_tn2qSA-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_tn2qSA-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
178
- 02:41:48","updateDate":"2012-08-23 12:47:02"},{"id":"OVYjJ8","name":"Burlington
178
+ 02:41:48","updateDate":"2012-08-23 12:47:02"},{"id":"wN2mAf","name":"BrickStone
179
+ Restaurant & Brewery","website":"http:\/\/www.brickstonebrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wN2mAf\/upload_7BecqY-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wN2mAf\/upload_7BecqY-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wN2mAf\/upload_7BecqY-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
180
+ 02:41:48","updateDate":"2013-08-10 00:05:53"},{"id":"OVYjJ8","name":"Burlington
179
181
  Beer Company","description":"Vermont''s first community supported brewery.
180
182
  We''re planning to open a Brewery in the Burlington Area featuring hand crafted
181
183
  ales & lagers. Follow our adventures from idea to brewery!","website":"http:\/\/www.burlingtonbeercompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OVYjJ8\/upload_F5jiIP-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OVYjJ8\/upload_F5jiIP-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OVYjJ8\/upload_F5jiIP-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-10-10
@@ -187,7 +189,14 @@ http_interactions:
187
189
  the end of the alley between 20 and 22 Main Street. Stop by the brewery any
188
190
  Saturday from 11am until 5pm to for a taste (or two). We''ll even sell you
189
191
  a growler or a keg to take home.","website":"http:\/\/chathambrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
190
- 02:41:50","updateDate":"2012-03-30 12:00:04"},{"id":"195Jl2","name":"Cody
192
+ 02:41:50","updateDate":"2012-03-30 12:00:04"},{"id":"Lli3HQ","name":"Check
193
+ Six Brewing Company","description":"A craft brewery in the making!\r\nCoFounded
194
+ by Noah Goldman, Tim Hassel and Norm Weiss. With a special thanks to Mike
195
+ and J.R. Goldman!","website":"http:\/\/checksixbeer.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Lli3HQ\/upload_1GKu6N-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Lli3HQ\/upload_1GKu6N-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Lli3HQ\/upload_1GKu6N-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2014-03-17
196
+ 15:11:13","updateDate":"2014-03-17 15:11:51"},{"id":"v5bPRk","name":"Cherry
197
+ Street Brewing Cooperative","description":"Forsyth''s only Brewpub. The Community
198
+ Brewery. Do You Know Your Brewer?","website":"http:\/\/www.cherrystreetbrewing.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/v5bPRk\/upload_s4rzy1-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/v5bPRk\/upload_s4rzy1-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/v5bPRk\/upload_s4rzy1-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-08-02
199
+ 19:13:55","updateDate":"2013-11-22 16:13:41"},{"id":"195Jl2","name":"Cody
191
200
  Brewing Company","description":"Cody Brewing Company is located in Historic
192
201
  Amesbury, Massachusetts on the Powow River. We make hand crafted beer that
193
202
  combines traditional styles with rule breaking ideas to make the best beer
@@ -208,8 +217,8 @@ http_interactions:
208
217
  fun doing what we love - Making Great Beer.\r\n\r\nThe Crabtree Brewing Company,
209
218
  ltd. is a Colorado based company providing premium ale, wheat, stout, and
210
219
  lager style beers. Established in 2006, this is the first micro-brewery located
211
- within Greeley, Colorado.","website":"http:\/\/www.crabtreebrewing.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
212
- 02:41:51","updateDate":"2012-03-21 19:06:05"},{"id":"supFO9","name":"Dead
220
+ within Greeley, Colorado.","website":"http:\/\/www.crabtreebrewing.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_97eBIx-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_97eBIx-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_97eBIx-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
221
+ 02:41:51","updateDate":"2013-08-12 21:52:41"},{"id":"supFO9","name":"Dead
213
222
  Frog Brewery","description":"A Canadian Craft Brewery located in Aldergrove
214
223
  BC and home of the finest beer in the universe! Do It Froggy Style!!!","website":"http:\/\/www.deadfrogbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
215
224
  02:41:52","updateDate":"2012-03-21 19:06:13"},{"id":"MpYI7s","name":"Doolally","description":"Doolally
@@ -273,7 +282,13 @@ http_interactions:
273
282
  \r\n\r\nWe make different beers throughout the year, some we brew all the
274
283
  time and some are only around for a very short period. Our focus is to expand
275
284
  our abilities and enjoy our work.","website":"http:\/\/www.halfacrebeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
276
- 02:41:56","updateDate":"2012-10-23 15:16:03"},{"id":"s6FkDL","name":"High
285
+ 02:41:56","updateDate":"2013-08-09 14:22:06"},{"id":"h5HYz6","name":"Hamburger
286
+ Mary''s","description":"Opened in 2006, Hamburger Mary''s Chicago is a classy-kitsch
287
+ American diner serving gourmet half-pound burgers with a side of sass. Mary''s
288
+ expanded in 2009 and added a small brewery, making her the oldest nano-brewery
289
+ in Chicago. Mary''s motto is \"an open-air bar & grill for open-minded people,\" where
290
+ all are welcome to \"Eat, Drink.. .and be MARY!\"","website":"http:\/\/www.hamburgermarys.com\/chicago","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/h5HYz6\/upload_rNDRL5-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/h5HYz6\/upload_rNDRL5-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/h5HYz6\/upload_rNDRL5-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
291
+ 02:41:56","updateDate":"2013-08-09 16:24:56"},{"id":"s6FkDL","name":"High
277
292
  & Mighty Beer Company","description":"High & Mighty Beer Company began in
278
293
  2006 as an offshoot of Shelton Brothers beer importing company. Will Shelton
279
294
  took his idea for a novel German-style ale to Paper City Brewery in Holyoke,
@@ -334,7 +349,15 @@ http_interactions:
334
349
  people can enjoy fishing, hiking, camping, sailing, antiquing, and bird watching
335
350
  or simply kicking back and taking in the spectacular views of the Sierra Nevada
336
351
  mountain range.","website":"http:\/\/www.kernriverbrewingcompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
337
- 02:41:59","updateDate":"2012-03-21 19:06:10"},{"id":"6QNMyS","name":"Laht
352
+ 02:41:59","updateDate":"2012-03-21 19:06:10"},{"id":"QoD9Zu","name":"La Gardenia","description":"ROSITA,
353
+ the main brand, is a honey-colored ale, that delivers elegance with a certain
354
+ density in the glass, ivory tones with white foam, creamy and consistent with
355
+ a wholesome persistence. Due to the presence of secondary fermentation yeast,
356
+ the appearance is cloudy.\r\n\r\nWe recommend tasting it cold, not frozen
357
+ (42 to 46\u00baF) in order to envelop its aromatic presence.\r\n\r\nOnes olfactory
358
+ will detect fruit such as banana and red apple notes along with molasses which
359
+ is very subtle but also very complex.","website":"http:\/\/www.rosita.cat","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QoD9Zu\/upload_EwOgAZ-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QoD9Zu\/upload_EwOgAZ-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QoD9Zu\/upload_EwOgAZ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-08-16
360
+ 11:11:33","updateDate":"2013-08-18 13:54:32"},{"id":"6QNMyS","name":"Laht
338
361
  Neppur Brewing Company","description":"We couldn''t have said it better ourselves.
339
362
  Laht Neppur Brewing Co., located in Waitsburg, WA, offers premium handcrafted
340
363
  ale by the glass or pitcher in our tap room. Sampler trays are highly recommended
@@ -361,7 +384,7 @@ http_interactions:
361
384
  each stage of the brewing cycle, never skimp on how long each step takes and
362
385
  only use the highest quality ingredients: malted barley, hops, yeast, plus
363
386
  a healthy dose of science.","website":"http:\/\/www.lightningbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
364
- 02:42:00","updateDate":"2012-03-21 19:06:12"},{"id":"hSeoOy","name":"Microbrasserie
387
+ 02:42:00","updateDate":"2014-03-16 21:21:48"},{"id":"hSeoOy","name":"Microbrasserie
365
388
  de l''\u00cele d''Orl\u00e9ans","website":"http:\/\/www.microorleans.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-07-03
366
389
  15:20:18","updateDate":"2013-07-05 11:13:51"},{"id":"zpGIxB","name":"Moccasin
367
390
  Bend Brewing Company","description":"Moccasin Bend Brewing Company is located
@@ -398,7 +421,58 @@ http_interactions:
398
421
  before bringing them to market. Years of minor tweaks, arguments over hop
399
422
  profiles, and experiments with different brands of base malts are poured into
400
423
  every glass that we brew.","website":"http:\/\/mondaynightbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_24Ushu-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_24Ushu-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_24Ushu-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
401
- 02:42:02","updateDate":"2013-03-18 11:22:48"},{"id":"QlLikG","name":"Naukabout
424
+ 02:42:02","updateDate":"2013-11-22 16:19:28"}],"status":"success"}'
425
+ http_version:
426
+ recorded_at: Mon, 31 Mar 2014 20:13:20 GMT
427
+ - request:
428
+ method: get
429
+ uri: http://api.brewerydb.com/v2/breweries?key=API_KEY&established=2006&p=2
430
+ body:
431
+ encoding: US-ASCII
432
+ string: ''
433
+ headers:
434
+ User-Agent:
435
+ - BreweryDB Ruby Gem 0.2.3
436
+ response:
437
+ status:
438
+ code: 200
439
+ message:
440
+ headers:
441
+ content-type:
442
+ - application/json
443
+ date:
444
+ - Mon, 31 Mar 2014 20:13:20 GMT
445
+ server:
446
+ - Apache/2.2.26 (Amazon)
447
+ vary:
448
+ - Accept-Encoding
449
+ x-powered-by:
450
+ - PHP/5.3.28
451
+ x-ratelimit-limit:
452
+ - Unlimited
453
+ x-ratelimit-remaining:
454
+ - Unlimited
455
+ content-length:
456
+ - '8136'
457
+ connection:
458
+ - Close
459
+ body:
460
+ encoding: UTF-8
461
+ string: '{"currentPage":2,"numberOfPages":2,"totalResults":74,"data":[{"id":"I0AWx9","name":"Murray''s
462
+ Craft Brewing Co","description":"At Murray\u2019s we are fanatical about the
463
+ quality of our beers. We use only the best quality ingredients sourced from
464
+ Australia and around the world and we give all of our beers extended conditioning
465
+ times \u2013 no rushing.\r\n\r\nEstablished in late 2006 by passionate craft
466
+ beer enthusiast, Murray Howe, Murray\u2019s Craft Brewing Co. has quickly
467
+ gained a reputation as one of Aust best Craft Brewers. So much so that we
468
+ were awarded \u2018Best Brewer in Australia\u2019 in October 2012. \r\n\r\nCrafted
469
+ in Port Stephens on the beach on the NSW Hunter region our hugely sought-after
470
+ range of unconventional, unique and sometimes just plain weird \u2013 full-flavoured
471
+ beers are available across Australia.\r\n\r\nWe\u2019re not a corporation
472
+ and we\u2019d NEVER lower our standards to sell more beer. Rest-assured our
473
+ beers have won more awards than our ads. Murray\u2019s is proudly 100% Australian-owned.\r\n\r\nMurray\u2019s\u2026
474
+ Made of the Right Stuff.","website":"http:\/\/www.murraysbrewingco.com.au\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/I0AWx9\/upload_BEc42I-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/I0AWx9\/upload_BEc42I-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/I0AWx9\/upload_BEc42I-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2014-03-03
475
+ 23:24:05","updateDate":"2014-03-03 23:29:23"},{"id":"QlLikG","name":"Naukabout
402
476
  Beer Company","website":"http:\/\/naukabout.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QlLikG\/upload_HPPVas-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QlLikG\/upload_HPPVas-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QlLikG\/upload_HPPVas-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-01-09
403
477
  12:14:30","updateDate":"2013-01-09 12:16:56"},{"id":"8hMBS3","name":"Nils
404
478
  Oscar Bryggeri","description":"We brew beer and produce good spirits\r\n\r\nOur
@@ -412,18 +486,47 @@ http_interactions:
412
486
  please let us know if you want to know more: info@nilsoscar.se You can also
413
487
  sign up to Nils Oscar Good Friends . Welcome!","website":"http:\/\/www.nilsoscar.se\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-14
414
488
  10:30:50","updateDate":"2012-06-14 11:59:08"},{"id":"V4I9FT","name":"Ninkasi
415
- Brewing Company","description":"Ninkasi Brewing began its history on June
416
- 15th, 2006 when Jamie Floyd and Nikos Ridge spent 17 hours brewing their first
417
- batch of Total Domination IPA in leased space inside a German restaurant in
418
- Springfield, Oregon. Once a brewery, the building was equipped with a 15 barrel
419
- brew house set up for brewpub brewing.\r\n\r\nWithin the next few months Ninkasi
420
- maximized its first home as they pushed their maximum annual output of 1600
421
- barrels. Meanwhile, the two worked with the City of Eugene, the SBA, Liberty
422
- Bank and some investors to purchase their current location in the heart of
423
- the Historic Whiteaker neighborhood in Eugene. Over time, Ninkasi transformed
424
- the old plumbing company\u2019s building into the modern production brewery
425
- it is today.","website":"http:\/\/www.ninkasibrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_vJvHqO-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_vJvHqO-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_vJvHqO-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
426
- 02:42:03","updateDate":"2012-11-01 11:22:37"},{"id":"WwE6W1","name":"Oakshire
489
+ Brewing Company","description":"In late 2005, Nikos Ridge and Jamie Floyd
490
+ met at a favorite local bottle\r\nshop in Eugene, Ore. Nikos was sampling
491
+ a beer Jamie had brewed at a local\r\nrestaurant\/brewery and through mutual
492
+ friends, the two started talking.\r\nThe conversation landed on the question,
493
+ \u201cWhat would you do if you could\r\nopen your own brewery?\u201d With
494
+ Nikos\u2019 background in finance and Jamie\u2019s\r\nexperience in brewing,
495
+ it seemed like a good skillset for starting a brewery.\r\nThe two began brewing
496
+ about six months later, on June 15, 2006, when\r\nNikos and Jamie spent 17
497
+ hours brewing the first batch of Total Domination\r\nIPA. The first kegs were
498
+ produced in a leased space inside of a German\r\nrestaurant in Springfield,
499
+ Ore. Once a brewery, the building was equipped\r\nwith a 15-barrel brew house.
500
+ Here, a new craft brewery was born with one\r\nsoul driving purpose\u2014through
501
+ the creation of the highest quality beers;\r\nto improve the lives of its
502
+ customers, the residents of its communities, its\r\nemployees, and business
503
+ partners.\r\n\r\nBoth founders knew they wanted to do things differently\u2014within
504
+ the beer\r\nindustry and in the local community. In a time when the industry
505
+ landscape\r\nwas home to male-centric brands, Nikos and Jamie strived for
506
+ a company\r\nthat represented what beer meant to them\u2014a source of community
507
+ and\r\nthe root of human existence. And so, Ninkasi\u2014the Sumerian goddess
508
+ of\r\nfermentation\u2014was selected as the name. Throughout human history,
509
+ beer\r\nnot only was a catalyst for written language and organized education,
510
+ but\r\nwas also the center of community and culture, one never in operation\r\nwithout
511
+ the other\u2014a driving force behind the new brewery. In a quest to\r\nfind
512
+ property that could cultivate community spirit, the two purchased real\r\nestate
513
+ in Eugene\u2019s Whiteaker neighborhood and moved the brewery to its\r\ncurrent
514
+ location in 2007.\r\nSince then, Ninkasi has undergone three expansions, to
515
+ produce more\r\nbeer for more people. The expansions included a larger production
516
+ facility,\r\ntasting room, office spaces, and local distribution, all while
517
+ keeping the\r\nfocus on brewing excellent craft beer. Ninkasi\u2019s culture
518
+ continues to embody\r\n\u201cBelieve in the Goddess\u201d\u2014symbolizing
519
+ the Ninkasi ideal in an elevated\r\nhuman experience through the social enjoyment
520
+ and sharing of beer.\r\nThe current brewery features a 55-barrel brewing system,
521
+ with a capacity of\r\n95,000 barrels per year of craft beer to be distributed
522
+ throughout Alaska,\r\nCalifornia, Idaho, Montana, Oregon, Washington, and
523
+ British Columbia.\r\nThe Ninkasi family of beers, known as its Flagship Series,
524
+ has grown from\r\nits first batch of Total Domination IPA to include Tricerahops
525
+ Double IPA,\r\nBeliever Double Red, Oatis Oatmeal Stout, Vanilla Oatis Oatmeal
526
+ Stout,\r\nand Quantum Pale Ale. Today, the Ninkasi family of brands includes
527
+ its\r\nFlagship, Seasonal Release, Special Release, Prismatic Lager, Single
528
+ Hop,\r\nand R&D Series.","website":"http:\/\/www.ninkasibrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_V8Ophh-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_V8Ophh-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_V8Ophh-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
529
+ 02:42:03","updateDate":"2013-11-01 11:44:26"},{"id":"WwE6W1","name":"Oakshire
427
530
  Brewing Company","description":"The name Oakshire represents Strength, Independence,
428
531
  Community and Bioregion, values held by our owners and employees. Begun
429
532
  in October 2006 by brothers Jeff and Chris Althouse, Oakshire Brewing operates
@@ -434,51 +537,20 @@ http_interactions:
434
537
  single batch beers only available on draft. The brewery aims to make clean,
435
538
  consistent, high quality beer \u2013 humble brewers of delicious beer.\r\n\r\nFormerly
436
539
  know as Willamette Brewery","website":"http:\/\/oakbrew.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
437
- 02:42:04","updateDate":"2012-03-21 19:06:11"},{"id":"ayEBYP","name":"Port
540
+ 02:42:04","updateDate":"2012-03-21 19:06:11"},{"id":"bTThBS","name":"Orlando
541
+ Brewing Partners, INC.","description":"They have a wide variety of beers made
542
+ on premises, with more than a dozen on tap. Bar is is in an industrial area
543
+ and is kinda bare, but it''s got good beer, and good people, and that''s what
544
+ counts. Try the ''Monk-in-the-trunk'' stay the hell away from the Winter Park
545
+ beer. Bottles, and kegs available as well.","website":"http:\/\/www.orlandobrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/bTThBS\/upload_uBCRRD-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/bTThBS\/upload_uBCRRD-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/bTThBS\/upload_uBCRRD-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
546
+ 02:42:04","updateDate":"2013-11-27 12:42:07"},{"id":"ayEBYP","name":"Port
438
547
  Brewing Company","description":"We officially opened on May 5th 2006. Now
439
548
  we will be able to make up to 5000 barrels of beer enabling you more chances
440
549
  to drink your favorite Port Brewed beers at home and around town. More impressive
441
550
  is our oak barrel room where we age our barrel aged specialty beers. Come
442
551
  check out our tasting bar on Fridays and Saturdays where you can get bottles,
443
552
  jugs & merchandise to go while you sample what we''ve been brewing!","website":"http:\/\/www.portbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
444
- 02:42:06","updateDate":"2013-07-05 23:39:59"}],"status":"success"}'
445
- http_version:
446
- recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
447
- - request:
448
- method: get
449
- uri: http://api.brewerydb.com/v2/breweries?key=API_KEY&established=2006&p=2
450
- body:
451
- encoding: US-ASCII
452
- string: ''
453
- headers:
454
- User-Agent:
455
- - BreweryDB Ruby Gem 0.2.0
456
- response:
457
- status:
458
- code: 200
459
- message:
460
- headers:
461
- date:
462
- - Mon, 22 Jul 2013 00:05:46 GMT
463
- server:
464
- - Apache/2.2.24 (Amazon)
465
- x-powered-by:
466
- - PHP/5.3.26
467
- x-ratelimit-limit:
468
- - Unlimited
469
- x-ratelimit-remaining:
470
- - Unlimited
471
- vary:
472
- - Accept-Encoding
473
- content-length:
474
- - '4882'
475
- connection:
476
- - close
477
- content-type:
478
- - application/json
479
- body:
480
- encoding: UTF-8
481
- string: '{"currentPage":2,"numberOfPages":2,"totalResults":66,"data":[{"id":"6UQcqZ","name":"Robens
553
+ 02:42:06","updateDate":"2014-03-16 21:21:54"},{"id":"6UQcqZ","name":"Robens
482
554
  Kerkerbr\u00e4u","website":"http:\/\/www.robens-kerkerbraeu.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
483
555
  10:18:43","updateDate":"2012-08-16 14:56:53"},{"id":"3Q48Ed","name":"R\u00f6merbr\u00e4u
484
556
  Riegel","website":"http:\/\/www.roemerbraeu.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
@@ -517,7 +589,10 @@ http_interactions:
517
589
  of quality and returning a percentage of our profits to the local community.","website":"http:\/\/www.sobrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
518
590
  02:42:08","updateDate":"2012-03-21 19:06:10"},{"id":"DWG9s4","name":"Spezialit\u00e4tenbrauerei
519
591
  Eckart","website":"http:\/\/www.brauerei-eckart.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
520
- 10:20:23","updateDate":"2012-08-16 15:11:37"},{"id":"g6S9WB","name":"Square
592
+ 10:20:23","updateDate":"2012-08-16 15:11:37"},{"id":"W0G7sk","name":"Spring
593
+ House Brewing Company","description":"Located in Conestoga, PA in the heart
594
+ of Lancaster County.","website":"http:\/\/www.springhousebeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/W0G7sk\/upload_h98Shl-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/W0G7sk\/upload_h98Shl-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/W0G7sk\/upload_h98Shl-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
595
+ 02:42:08","updateDate":"2013-08-12 23:44:10"},{"id":"g6S9WB","name":"Square
521
596
  One Brewery & Distillery","description":"The Square One Brewery & Distillery
522
597
  began operations as a brewery \/restaurant in February of 2006. In August
523
598
  of 2008 Square One became the first microdistillery restaurant in the state
@@ -533,7 +608,7 @@ http_interactions:
533
608
  it was worth it. We hope you agree.\r\n \r\nSurly: The anger fueled by the
534
609
  inability to find good beer.\r\n\r\n\"We brewed beer for people who didn''t
535
610
  know they wanted to drink it until they had it.\" - Omar Ansari","website":"http:\/\/www.surlybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
536
- 02:42:09","updateDate":"2012-07-30 21:46:09"},{"id":"9x7wNn","name":"The Lost
611
+ 02:42:09","updateDate":"2013-11-21 13:00:24"},{"id":"9x7wNn","name":"The Lost
537
612
  Abbey","description":"Founded in 2006, Port Brewing Company produces a line
538
613
  of award-winning American ales and the groundbreaking Lost Abbey family of
539
614
  Belgian-inspired beers. Craft brewed under the direction of co-founder and
@@ -547,7 +622,7 @@ http_interactions:
547
622
  and The Lost Abbey beers have won more nearly 100 medals in regional, national
548
623
  and international competitions. Rate Beer ranks the brewery number three in
549
624
  the world, and six of its beers are among the 100 best beers.","website":"http:\/\/www.lostabbey.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
550
- 02:42:10","updateDate":"2012-03-21 19:06:09"},{"id":"VcP5iA","name":"Twin
625
+ 02:42:10","updateDate":"2014-03-16 21:21:53"},{"id":"VcP5iA","name":"Twin
551
626
  Lakes Brewing Company","description":"In 1985, while attending the University
552
627
  of California at Berkeley, Samuel Hobbs wrote a chemistry paper, for a laugh,
553
628
  on \u201caqueous beer foam\u201d (the head of a beer). It would take 21 years
@@ -572,13 +647,14 @@ http_interactions:
572
647
  are available at most regional beer and liquor stores.","website":"http:\/\/twinlakesbrewingcompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
573
648
  02:42:11","updateDate":"2012-04-21 12:38:05"},{"id":"Mgxzcw","name":"Weasel
574
649
  Boy Brewing Company","description":"Founded by Jay and Lori Wince in 2006
575
- Weasel Boy Brewing Company is committed to our local community and works
576
- with many local organizations to promote Zanesville and the Muskingum County
577
- Area. By taking an active part in community events, supporting local businesses,
578
- local charities, local artisans and promoting a family friendly environment,
579
- Weasel Boy endeavors to be a good citizen and good neighbor. Allow us to
580
- introduce our founders.","website":"http:\/\/www.weaselboybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
581
- 02:42:12","updateDate":"2012-09-29 20:55:25"},{"id":"6oEP92","name":"Wells
650
+ Weasel Boy Brewing Company began brewing operations in July of 2007. The brewpub
651
+ brews mostly traditional style ales specializing in well balanced session
652
+ strength offerings. \r\nWinners of GABF medals in both 2010 (bronze) and 2012
653
+ (gold) for their Anastasia Russian Imperial Stout, Weasel Boy is well recognized
654
+ for brewing high quality products. \r\nThe brewpub offers artisan pizza made
655
+ with fresh local ingredients, supports local art and music, and regularly
656
+ participates in community events benefiting local causes.","website":"http:\/\/www.weaselboybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
657
+ 02:42:12","updateDate":"2013-08-12 13:08:46"},{"id":"6oEP92","name":"Wells
582
658
  and Young''s Brewing Company","description":"Wells and Young''s Brewing Company
583
659
  is the epitome of all-round business excellence, demonstrating sustained growth
584
660
  for its beers and stockists whilst combining traditional family values with
@@ -607,5 +683,5 @@ http_interactions:
607
683
  private room you can rent upstairs.","website":"http:\/\/woodruffbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_HoAg3q-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_HoAg3q-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_HoAg3q-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
608
684
  02:42:16","updateDate":"2012-11-15 16:40:40"}],"status":"success"}'
609
685
  http_version:
610
- recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
686
+ recorded_at: Mon, 31 Mar 2014 20:13:20 GMT
611
687
  recorded_with: VCR 2.4.0