pliable 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.bundle/install.log +1575 -0
  2. data/.document +3 -0
  3. data/.travis.yml +16 -0
  4. data/.yardopts +1 -0
  5. data/ChangeLog.md +4 -0
  6. data/Gemfile +7 -0
  7. data/Gemfile.lock +134 -0
  8. data/LICENSE.txt +20 -0
  9. data/README.md +287 -0
  10. data/Rakefile +39 -0
  11. data/lib/generators/pliable/model_generator.rb +40 -0
  12. data/lib/generators/pliable/templates/migration.rb +24 -0
  13. data/lib/pliable/configure.rb +12 -0
  14. data/lib/pliable/ply.rb +89 -0
  15. data/lib/pliable/ply_relation.rb +4 -0
  16. data/lib/pliable/text_helper.rb +3 -0
  17. data/lib/pliable/version.rb +4 -0
  18. data/lib/pliable.rb +17 -0
  19. data/pliable.gemspec +35 -0
  20. data/spec/.DS_Store +0 -0
  21. data/spec/dummy/README.rdoc +261 -0
  22. data/spec/dummy/Rakefile +7 -0
  23. data/spec/dummy/app/models/.gitkeep +0 -0
  24. data/spec/dummy/app/models/invoice.rb +6 -0
  25. data/spec/dummy/app/models/line_item.rb +5 -0
  26. data/spec/dummy/app/models/merchandise.rb +5 -0
  27. data/spec/dummy/app/models/ply.rb +7 -0
  28. data/spec/dummy/config/application.rb +65 -0
  29. data/spec/dummy/config/boot.rb +10 -0
  30. data/spec/dummy/config/database.yml +19 -0
  31. data/spec/dummy/config/environment.rb +5 -0
  32. data/spec/dummy/config/environments/development.rb +37 -0
  33. data/spec/dummy/config/environments/production.rb +67 -0
  34. data/spec/dummy/config/environments/test.rb +37 -0
  35. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/spec/dummy/config/initializers/inflections.rb +15 -0
  37. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  38. data/spec/dummy/config/initializers/pliable.rb +5 -0
  39. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  40. data/spec/dummy/config/initializers/session_store.rb +8 -0
  41. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/spec/dummy/config/locales/en.yml +5 -0
  43. data/spec/dummy/config/routes.rb +58 -0
  44. data/spec/dummy/config.ru +4 -0
  45. data/spec/dummy/db/migrate/.DS_Store +0 -0
  46. data/spec/dummy/db/migrate/20140117210156_create_plies_and_ply_relations.rb +23 -0
  47. data/spec/dummy/db/migration_helper.rb +42 -0
  48. data/spec/dummy/db/schema.rb +39 -0
  49. data/spec/dummy/db/seeds.rb +17 -0
  50. data/spec/dummy/db/static/bottles.csv +201 -0
  51. data/spec/dummy/db/static/varietal_aliases.csv +433 -0
  52. data/spec/dummy/db/static/varietals.csv +295 -0
  53. data/spec/dummy/lib/assets/.gitkeep +0 -0
  54. data/spec/dummy/log/.gitkeep +0 -0
  55. data/spec/dummy/log/development.log +63 -0
  56. data/spec/dummy/log/test.log +2339 -0
  57. data/spec/dummy/public/404.html +26 -0
  58. data/spec/dummy/public/422.html +26 -0
  59. data/spec/dummy/public/500.html +25 -0
  60. data/spec/dummy/public/favicon.ico +0 -0
  61. data/spec/dummy/script/rails +6 -0
  62. data/spec/dummy/spec/fixtures/varietals.yml +2135 -0
  63. data/spec/dummy/spec/models/.DS_Store +0 -0
  64. data/spec/dummy/spec/models/fake_ply_test.rb +12 -0
  65. data/spec/dummy/spec/models/ply_relation_spec.rb +12 -0
  66. data/spec/dummy/spec/pliable_integartion_spec.rb +48 -0
  67. data/spec/dummy/spec/tmp/app/models/foo_alias.rb +4 -0
  68. data/spec/spec_helper.rb +36 -0
  69. data/sub +4 -0
  70. metadata +389 -0
@@ -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,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -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,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
Binary file
@@ -0,0 +1,23 @@
1
+ class CreatePliesAndPlyRelations < ActiveRecord::Migration
2
+ def change
3
+ create_table :plies do |t|
4
+ t.integer :user_id
5
+ t.string :oid
6
+ t.string :otype
7
+ t.json :data
8
+ t.datetime :last_modified
9
+ t.datetime :last_checked
10
+
11
+ t.timestamps
12
+ end
13
+
14
+ create_table :ply_relations do |t|
15
+ t.integer :parent_id
16
+ t.string :parent_type
17
+ t.integer :child_id
18
+ t.string :child_type
19
+
20
+ t.timestamps
21
+ end
22
+ end
23
+ 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,39 @@
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
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "plies", force: true do |t|
20
+ t.integer "user_id"
21
+ t.string "oid"
22
+ t.string "otype"
23
+ t.json "data"
24
+ t.datetime "last_modified"
25
+ t.datetime "last_checked"
26
+ t.datetime "created_at"
27
+ t.datetime "updated_at"
28
+ end
29
+
30
+ create_table "ply_relations", force: true do |t|
31
+ t.integer "parent_id"
32
+ t.string "parent_type"
33
+ t.integer "child_id"
34
+ t.string "child_type"
35
+ t.datetime "created_at"
36
+ t.datetime "updated_at"
37
+ end
38
+
39
+ 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"