happy_place 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.coveralls.yml +0 -0
- data/.travis.yml +9 -0
- data/Gemfile +3 -0
- data/README.md +21 -9
- data/happy_place.gemspec +7 -3
- data/lib/happy_place/controller.rb +22 -19
- data/lib/happy_place/version.rb +1 -1
- data/spec/dummy/.gitignore +16 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/controllers/examples_controller.rb +7 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/config/application.rb +63 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +19 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +34 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/migration_helper.rb +42 -0
- data/spec/dummy/db/schema.rb +16 -0
- data/spec/dummy/db/seeds.rb +17 -0
- data/spec/dummy/db/static/bottles.csv +201 -0
- data/spec/dummy/db/static/varietal_aliases.csv +433 -0
- data/spec/dummy/db/static/varietals.csv +295 -0
- data/spec/dummy/dummy_test +0 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/spec/controllers/examples_controller_spec.rb +9 -0
- data/spec/dummy/spec/tmp/app/models/foo_alias.rb +4 -0
- data/spec/spec_helper.rb +17 -0
- metadata +138 -3
@@ -0,0 +1,67 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# Code is not reloaded between requests
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to nil and saved in location specified by config.assets.prefix
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Prepend all log lines with the following tags
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
38
|
+
|
39
|
+
# Use a different logger for distributed setups
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
|
+
|
42
|
+
# Use a different cache store in production
|
43
|
+
# config.cache_store = :mem_cache_store
|
44
|
+
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
47
|
+
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
49
|
+
# config.assets.precompile += %w( search.js )
|
50
|
+
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
53
|
+
|
54
|
+
# Enable threaded mode
|
55
|
+
# config.threadsafe!
|
56
|
+
|
57
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
+
# the I18n.default_locale when a translation can not be found)
|
59
|
+
config.i18n.fallbacks = true
|
60
|
+
|
61
|
+
# Send deprecation notices to registered listeners
|
62
|
+
config.active_support.deprecation = :notify
|
63
|
+
|
64
|
+
# Log the query plan for queries taking more than this (works
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
67
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Print deprecation notices to the stderr
|
33
|
+
config.active_support.deprecation = :stderr
|
34
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '7f20ff3cd8a9d7ac03fcba842344d0798434c99202cf7b7da729a506ea43b5c0cb563aa791e08f80f9f93b2a0cff4808b5d9fefa6af4daadd4e2170dfcaeb566'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
# root :to => 'welcome#index'
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id))(.:format)'
|
58
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module MigrationHelper
|
2
|
+
def support_create_extension?
|
3
|
+
# Assume that 9.1 or later supports CREATE EXTENSION
|
4
|
+
version_parts = select_value("SELECT version()").match(/PostgreSQL ([\d\.]*)/)[1].split('.')
|
5
|
+
version_parts[0].to_i >= 9 && version_parts[1].to_i >= 1
|
6
|
+
end
|
7
|
+
|
8
|
+
# Install the extension named extension_name
|
9
|
+
def install_extension(extension_name, function_name = nil)
|
10
|
+
if support_create_extension?
|
11
|
+
if select_value(%Q{select extname from pg_extension where extname = '#{extension_name}'}).nil?
|
12
|
+
execute "CREATE EXTENSION #{extension_name}"
|
13
|
+
end
|
14
|
+
else
|
15
|
+
# Speculating that the extension installs a function of the same name
|
16
|
+
function_name ||= extension_name
|
17
|
+
unless select_value("SELECT proname FROM pg_proc WHERE proname = '#{function_name}'")
|
18
|
+
puts "*" * 60
|
19
|
+
puts ""
|
20
|
+
puts "You need to install the #{extension_name} extension"
|
21
|
+
puts ""
|
22
|
+
sharedir = `pg_config --sharedir 2>&1`.strip
|
23
|
+
if $?.to_i > 0
|
24
|
+
puts "First, you need to know SHAREDIR - maybe something like `pg_config --sharedir`?"
|
25
|
+
puts ""
|
26
|
+
sharedir = 'SHAREDIR'
|
27
|
+
end
|
28
|
+
puts "Try `psql -d #{connection.current_database} -f #{sharedir}/contrib/#{extension_name}.sql`"
|
29
|
+
puts ""
|
30
|
+
puts "*" * 60
|
31
|
+
raise "Extension #{name} not installed."
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
def uninstall_extension(extension_name)
|
36
|
+
if support_create_extension?
|
37
|
+
execute "DROP EXTENSION #{extension_name}"
|
38
|
+
else
|
39
|
+
puts "Skipping uninstall of extension #{extension_name}"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20140117210156) do
|
15
|
+
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'csv'
|
2
|
+
Varietal.delete_all
|
3
|
+
VarietalAlias.delete_all
|
4
|
+
if Varietal.count == 0
|
5
|
+
CSV.foreach('db/static/varietals.csv', :headers => true) do |row|
|
6
|
+
Varietal.create!(row.to_hash)
|
7
|
+
end
|
8
|
+
CSV.foreach('db/static/varietal_aliases.csv', :headers => true) do |row|
|
9
|
+
VarietalAlias.create!(row.to_hash)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
Bottle.delete_all # for now
|
13
|
+
if Bottle.count == 0
|
14
|
+
CSV.foreach('db/static/bottles.csv', :headers => true) do |row|
|
15
|
+
Bottle.create!(row.to_hash)
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,201 @@
|
|
1
|
+
name,varietal
|
2
|
+
"2004 Mclean's Farm Shiraz/Cabernet","Shiraz|Cabernet Sauvignon"
|
3
|
+
"2003 Twotone Farm Cabernet Sauvignon","Cabernet Sauvignon"
|
4
|
+
"2004 TwoTone Farm Chardonnay","Chardonnay"
|
5
|
+
"2002 Twotone Farm Cabernet Sauvignon","Cabernet Sauvignon"
|
6
|
+
"2004 Penfolds Bin 60A Cabernet Shiraz","Shiraz|Cabernet Sauvignon"
|
7
|
+
"2004 Branson Coach Coach House Block Cabernet Sauvignon","Cabernet Sauvignon"
|
8
|
+
"2004 Penfolds Wines Cabernet Sauvignon Bin 707 Barossa Valley","Cabernet Sauvignon"
|
9
|
+
"2004 Robert Mondavi Reserve Cabernet Sauvignon","Cabernet Sauvignon"
|
10
|
+
"2004 d'Arenberg Coppermine Road Cabernet Sauvignon","Cabernet Sauvignon"
|
11
|
+
"2004 Chateau Montelena 2003 Estate Cabernet Sauvignon","Cabernet Sauvignon"
|
12
|
+
"2006 Domaine/Maison Louis Jadot Puligny Montrachet Les Combettes",""
|
13
|
+
"2006 Louis Jadot Puligny-Montrachet les Folatières",""
|
14
|
+
"2006 Louis Jadot Chambolle Musigny les Fuees",""
|
15
|
+
"2006 Louis Jadot Pommard Les Rugiens",""
|
16
|
+
"2006 Louis Jadot Vosne Romanee Les Suchots",""
|
17
|
+
"2006 Louis Jadot Volnay Clos des Chenes",""
|
18
|
+
"2006 Louis Jadot Pommard Grands Epenot",""
|
19
|
+
"2006 Louis Jadot Pommard Clos de la Commaraine",""
|
20
|
+
"2003 Kenwood Sonoma Zinfandel","Zinfandel"
|
21
|
+
"2004 Kenwood Vineyards Cabernet Sauvignon Sonoma County","Cabernet Sauvignon"
|
22
|
+
"2005 Kenwood Zinfandel Kenwood Vineyards","Zinfandel"
|
23
|
+
"Kenwood Jack London Vineyard Zinfandel","Zinfandel"
|
24
|
+
"2005 Kenwood Vineyards Pinot Noir Russian River Valley","Pinot Noir"
|
25
|
+
"2005 Kenwood Vineyards Cabernet Sauvignon Jack London Vineyard Sonoma Valley","Cabernet Sauvignon"
|
26
|
+
"2003 Kenwood Vineyards Merlot Sonoma County","Merlot"
|
27
|
+
"2004 Kenwood Jack London Vineyard Merlot","Merlot"
|
28
|
+
"1996 Kenwood Sonoma Zinfandel","Zinfandel"
|
29
|
+
"1989 Kenwood Sonoma Zinfandel","Zinfandel"
|
30
|
+
"2003 Kenwood Sauvignon Blanc","Sauvignon Blanc"
|
31
|
+
"1993 Kenwood Chardonnay Sonoma Valley","Chardonnay"
|
32
|
+
"2005 Kenwood Jack London Vineyard Zinfandel","Zinfandel"
|
33
|
+
"1999 Kenwood Pinot Noir Reserve Olivet","Pinot Noir"
|
34
|
+
"1999 Kenwood Olivet Lane Pinot Noir","Pinot Noir"
|
35
|
+
"1999 Kenwood Vineyards Cabernet Sauvignon Artist Series Sonoma County","Cabernet Sauvignon"
|
36
|
+
"2002 Kenwood Reserve Chardonnay","Chardonnay"
|
37
|
+
"1992 Kenwood Vineyards Cabernet Sauvignon Artist Series Sonoma County","Cabernet Sauvignon"
|
38
|
+
"2002 Kenwood Jack London Vineyard Zinfandel","Zinfandel"
|
39
|
+
"2003 Kenwood Vineyards Cabernet Sauvignon Jack London Vineyard Sonoma Valley","Cabernet Sauvignon"
|
40
|
+
"2001 Kenwood Sonoma Zinfandel ","Zinfandel"
|
41
|
+
"2000 Kenwood Vineyards Cabernet Sauvignon Jack London Vineyard Sonoma Valley","Cabernet Sauvignon"
|
42
|
+
"2001 Kenwood Russian River Pinot Noir","Pinot Noir"
|
43
|
+
"1999 Kenwood Mazonni Ranch Reserve Zinfindel","Zinfandel"
|
44
|
+
"2007 Laboure Roi Beaujolais Nouveau",""
|
45
|
+
"2000 Beringer Nouveau Gamay Beaujolais","Gamay"
|
46
|
+
"2007 Georges Duboeuf Beaujolais Nouveau",""
|
47
|
+
"2008 Georges Duboeuf Beaujolais Nouveau",""
|
48
|
+
"2008 Laboure Roi Beaujolais Nouveau",""
|
49
|
+
"2006 Louis Tête Morgon",""
|
50
|
+
"2006 Bouchard Aîné & Fils Beajolais Nouveau",""
|
51
|
+
"2005 Mommessin Beaujolais-Villages Nouveau",""
|
52
|
+
"2003 Duboeuf Beaujolais Nouveau",""
|
53
|
+
"2001 Joseph Drouhin Beaujolais Nouveau",""
|
54
|
+
"2002 Duboeuf Beaujolais Nouveau",""
|
55
|
+
"2001 Beringer Nouveau Gamay Beaujolais","Gamay"
|
56
|
+
"2005 Laboure Roi Beaujolais Nouveau",""
|
57
|
+
"2000 Duboeuf Beaujolais Nouveau",""
|
58
|
+
"2001 Dom. des Terres Dorees Beaujolais l Ancien - Nouveau",""
|
59
|
+
"1999 Duboeuf Beaujolais Nouveau",""
|
60
|
+
"2004 Duboeuf Beaujolais Nouveau",""
|
61
|
+
"2001 Duboeuf Beaujolais Nouveau",""
|
62
|
+
"2004 Beringer Nouveau Gamay Beaujolais","Gamay"
|
63
|
+
"2004 JC Cellars Syrah Fess Parker's Vineyard Santa Barbara County","shiraz"
|
64
|
+
"2005 Château Giscours",""
|
65
|
+
"2005 Chevalier de Lascombes",""
|
66
|
+
"2004 Patz and Hall Wine Company Chardonnay Dutton Ranch Russian River Valley","Chardonnay"
|
67
|
+
"2004 St. Michael-Eppan Chardonnay Alto Adige Südtirol","Chardonnay"
|
68
|
+
"2006 St. Michael Eppan Chardonnay Sanct Valentin","Chardonnay"
|
69
|
+
"2002 Chateau St. Jean Sonoma County Reserve Chardonnay","Chardonnay"
|
70
|
+
"2002 Peter Michael Chardonnay Belle Côte","Chardonnay"
|
71
|
+
"2004 Chateau St. Jean Sonoma County Reserve Chardonnay","Chardonnay"
|
72
|
+
"2001 Peter Michael Chardonnay La Carrière","Chardonnay"
|
73
|
+
"2000 Chateau St. Jean Sonoma County Reserve Chardonnay","Chardonnay"
|
74
|
+
"2005 Chateau Saint Jean Belle Terre Chardonnay","Chardonnay"
|
75
|
+
"2001 Peter Michael Chardonnay Belle Côte","Chardonnay"
|
76
|
+
"2002 St. Clement Vineyards Chardonnay Carneros Napa Valley","Chardonnay"
|
77
|
+
"1997 St. Francis Chardonnay Reserve","Chardonnay"
|
78
|
+
"2000 Chateau Saint Jean Belle Terre Chardonnay","Chardonnay"
|
79
|
+
"1996 Chateau Saint Jean Belle Terre Chardonnay","Chardonnay"
|
80
|
+
"1999 Chateau St. Jean Chardonnay Robert Young Vineyard Alexander Valley","Chardonnay"
|
81
|
+
"1999 Chateau St. Jean Durrell Vineyard Chardonnay","Chardonnay"
|
82
|
+
"1996 St. Francis Chardonnay Reserve","Chardonnay"
|
83
|
+
"1997 Chateau St. Jean Chardonnay Robert Young Vineyard Alexander Valley","Chardonnay"
|
84
|
+
"2002 Chateau Saint Jean Belle Terre Chardonnay","Chardonnay"
|
85
|
+
"2004 St. Francis Chardonnay","Chardonnay"
|
86
|
+
"2004 Santa Margherita Chardonnay Alto Adige","Chardonnay"
|
87
|
+
"2004 Z D Chardonnay","Chardonnay"
|
88
|
+
"NV Carmenet Cava Privat Opus Evolutium",""
|
89
|
+
"1994 Opus One Proprietary Red Wine Napa Valley",""
|
90
|
+
"1987 Opus One Proprietary Red Wine Napa Valley",""
|
91
|
+
"2001 Opus One Proprietary Red Wine Napa Valley",""
|
92
|
+
"1999 Opus One Proprietary Red Wine Napa Valley",""
|
93
|
+
"1990 Opus One Proprietary Red Wine Napa Valley",""
|
94
|
+
"1995 Opus One Proprietary Red Wine Napa Valley",""
|
95
|
+
"1985 Opus One Proprietary Red Wine Napa Valley",""
|
96
|
+
"1995 Robert Mondavi/Baron Philippe de Rothschild Opus One Napa Valley",""
|
97
|
+
"1987 Robert Mondavi/Baron Philippe de Rothschild Opus One Napa Valley",""
|
98
|
+
"2000 Opus One Magnum (1.5L)",""
|
99
|
+
"1999 Iron Horse T Bar T Benchmark",""
|
100
|
+
"1992 Iron Horse Vineyards Blanc de Blancs Sonoma County","Chardonnay"
|
101
|
+
"1997 Iron Horse T Bar T Benchmark",""
|
102
|
+
"2002 Iron Horse T Bar T Benchmark",""
|
103
|
+
"2002 Iron Horse Corral Vineyard Chardonnay","Chardonnay"
|
104
|
+
"2005 Iron Horse Vineyards Chardonnay Unoaked","Chardonnay"
|
105
|
+
"1999 Iron Horse Estate Pinot Noir","Pinot Noir"
|
106
|
+
"1992 Iron Horse Late Disgorged Brut",""
|
107
|
+
"2005 Iron Horse Cuvee R Sauvignon Blanc/Viognier","Sauvignon Blanc|Viognier"
|
108
|
+
"1995 Iron Horse Vrais Amis",""
|
109
|
+
"2001 Iron Horse Blanc de Blancs","Chardonnay"
|
110
|
+
"2001 Iron Horse Vineyards Classic Vintage Brut",""
|
111
|
+
"2001 Iron Horse Vineyards Pinot Noir Thomas Road","Pinot Noir"
|
112
|
+
"2000 Iron Horse Estate Chardonnay","Chardonnay"
|
113
|
+
"2003 Iron Horse Brut Rose",""
|
114
|
+
"2001 Iron Horse T bar T Cabernet Sauvignon","Cabernet Sauvignon"
|
115
|
+
"2002 Iron Horse T bar T Merlot","Merlot"
|
116
|
+
"2002 Iron Horse T bar T Cabernet Sauvignon","Cabernet Sauvignon"
|
117
|
+
"1998 Iron Horse Vineyards Blanc de Blancs Sonoma County","Chardonnay"
|
118
|
+
"2002 Iron Horse T-bar-T Cabernet Franc","Cabernet Franc"
|
119
|
+
"1999 Kenwood Jack London Vineyard Merlot","Merlot"
|
120
|
+
"1996 Kenwood Sauvignon Blanc Reserve","Sauvignon Blanc"
|
121
|
+
"1996 Domaine Rene et Vincent Dauvissat Chablis La Forest","Chardonnay"
|
122
|
+
"2003 Domaine Dauvissat Camus Chablis Forest","Chardonnay"
|
123
|
+
"2005 Domaine Vincent Dauvissat Chablis La Forest","Chardonnay"
|
124
|
+
"1997 Domaine Rene et Vincent Dauvissat Chablis La Forest","Chardonnay"
|
125
|
+
"1995 Domaine Rene et Vincent Dauvissat Chablis La Forest","Chardonnay"
|
126
|
+
"1998 Domaine Rene et Vincent Dauvissat Chablis La Forest","Chardonnay"
|
127
|
+
"2006 Domaine Rene et Vincent Dauvissat Chablis La Forest","Chardonnay"
|
128
|
+
"Forest Glen Chardonnay","Chardonnay"
|
129
|
+
"Forest Glen White Merlot","Merlot"
|
130
|
+
"Forest Ville Merlot","Merlot"
|
131
|
+
"NV Old Forester Kentucky Straight Bourbon Whisky Proof",""
|
132
|
+
"Old Forester Birthday Bourbon",""
|
133
|
+
"2001 Bassermann-Jordan Riesling Spätlese Pfalz Forster Jesuitengarten","Riesling"
|
134
|
+
"2002 Bassermann-Jordan Riesling Spätlese Pfalz Forster Jesuitengarten","Riesling"
|
135
|
+
"2004 Ken Forrester Sauvignon Blanc","Sauvignon Blanc"
|
136
|
+
"1999 Von Buhl Forster Bishofsgarten Spatlese",""
|
137
|
+
"2000 Ken Forrester Grenache/Syrah","Grenache|Shiraz"
|
138
|
+
"1997 Bassermann-Jordan Riesling Spätlese Pfalz Forster Jesuitengarten","Riesling"
|
139
|
+
"2004 Domaine/Maison Louis Jadot Chassagne Montrachet Morgeot Clos de la Chapelle Domaine du Duc de Magenta",""
|
140
|
+
"2004 Domaine/Maison Louis Jadot Meursault Genevrieres",""
|
141
|
+
"2003 Domaine/Maison Louis Jadot Beaune Les Boucherottes",""
|
142
|
+
"2003 Domaine/Maison Louis Jadot Clos Vougeot",""
|
143
|
+
"2003 Domaine/Maison Louis Jadot Gevrey Chambertin Clos Saint Jacques",""
|
144
|
+
"2003 Louis Jadot Pernand-Vergelesses Clos de la Croix de Pierre",""
|
145
|
+
"2003 Domaine/Maison Louis Jadot Volnay Clos des Chenes",""
|
146
|
+
"2002 Jadot Louis Montrachet",""
|
147
|
+
"1997 Bonnes Mares Louis Jadot",""
|
148
|
+
"2005 Clos Vougeot Louis Jadot",""
|
149
|
+
"1995 Jadot Louis Musigny",""
|
150
|
+
"2004 Chevalier Montrachet les Demoiselles Louis Jadot",""
|
151
|
+
"1997 Chapelle Chambertin Louis Jadot",""
|
152
|
+
"2003 Louis Jadot Corton-Pougets",""
|
153
|
+
"2003 Louis Jadot Clos Vougeot",""
|
154
|
+
"2005 Louis Jadot Clos Vougeot",""
|
155
|
+
"2003 Maison Louis Jadot Morgon Cote du Py Château des Lumieres",""
|
156
|
+
"2001 Scopone Brunello di Montalcino","sangiovese"
|
157
|
+
"2001 Fattoria dei Barbi Brunello di Montalcino","sangiovese"
|
158
|
+
"2001 Mastrojanni Brunello di Montalcino","sangiovese"
|
159
|
+
"2001 Pieve Santa Restituta(Gaja) Brunello di Montalcino Sugarille (in double magnum)","sangiovese"
|
160
|
+
"2001 Valdicava Brunello Valdicava Brunello Sangiovese Italy Italy","Sangiovese"
|
161
|
+
"2001 Silvio Nardi Manachiara",""
|
162
|
+
"2002 Capanna Brunello di Montalcino","sangiovese"
|
163
|
+
"1999 Poggio di Sotto Brunello di Montalcino","sangiovese"
|
164
|
+
"2003 Ciacci Piccolomini d'Aragona Brunello di Montalcino Vigna di Pianrosso","sangiovese"
|
165
|
+
"2001 Brunello di Montalcino Riserva Fuligni","sangiovese"
|
166
|
+
"2001 Gaja Sugarille Brunello di Montalcino","sangiovese"
|
167
|
+
"1997 Altesino Montosoli Brunello di Montalcino","sangiovese"
|
168
|
+
"2001 Casanova di Neri Brunello Di Montalcino Tenuta Nuova","sangiovese"
|
169
|
+
"1997 Casanova di Neri Brunello di Montalcino Tenuta Nuova (From Private Cellar)","sangiovese"
|
170
|
+
"1997 Antinori Pian Delle Vigne Brunello Di Montalcino","sangiovese"
|
171
|
+
"2000 Casanova di Neri Brunello di Montalcino Tenuta Nuova (From Private Cellar)","sangiovese"
|
172
|
+
"1999 Castello Banfi Brunello di Montalcino Poggio all'Oro Riserva","castelao|sangiovese"
|
173
|
+
"1997 Castello Banfi Brunello di Montalcino Poggio all'Oro Riserva","castelao|sangiovese"
|
174
|
+
"1999 La Poderina Brunello di Montalcino","sangiovese"
|
175
|
+
"1999 Fuligni Brunello di Montalcino","sangiovese"
|
176
|
+
"2007 Wyatt Pinot Noir","Pinot Noir"
|
177
|
+
"2006 Wyatt Cabernet Sauvignon","Cabernet Sauvignon"
|
178
|
+
"2007 Wyatt Chardonnay California","Chardonnay"
|
179
|
+
"2002 Wyatt Pinot Noir","Pinot Noir"
|
180
|
+
"2003 Wyatt Chardonnay California","Chardonnay"
|
181
|
+
"2002 Wyatt Cabernet Sauvignon","Cabernet Sauvignon"
|
182
|
+
"2001 Wyatt Pinot Noir","Pinot Noir"
|
183
|
+
"2002 Wyatt Chardonnay California","Chardonnay"
|
184
|
+
"2000 Wyatt Cabernet Sauvignon","Cabernet Sauvignon"
|
185
|
+
"2000 Wyatt Chardonnay California","Chardonnay"
|
186
|
+
"1998 Hyatt Chardonnay","Chardonnay"
|
187
|
+
"1997 Hyatt Merlot Reserve","Merlot"
|
188
|
+
"1997 Hyatt Cabernet Sauvignon Reserve","Cabernet Sauvignon"
|
189
|
+
"2004 Hyatt Merlot","Merlot"
|
190
|
+
"1999 Hyatt Syrah","Shiraz"
|
191
|
+
"1997 Hyatt Merlot","Merlot"
|
192
|
+
"1998 Hyatt Cabernet Sauvignon Reserve","Cabernet Sauvignon"
|
193
|
+
"1998 Hyatt Three Rock's Red Meritage",""
|
194
|
+
"1999 Hyatt Riesling","Riesling"
|
195
|
+
"1998 Hyatt Fume Blanc","Sauvignon Blanc"
|
196
|
+
"1999 Hyatt Cabernet-Merlot","Cabernet Sauvignon|Merlot"
|
197
|
+
"2002 Hyatt Merlot","Merlot"
|
198
|
+
"2000 Hyatt Cabernet-Merlot","Cabernet Sauvignon|Merlot"
|
199
|
+
"1999 Hyatt Fume Blanc","Sauvignon Blanc"
|
200
|
+
"1996 Hyatt Merlot","Merlot"
|
201
|
+
"2004 TwoTone Farm Cabernet Sauvignon Napa Valley","Cabernet Sauvignon"
|