gdshowsdb 4.0.2 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +14 -11
  3. data/.gitignore +2 -0
  4. data/.ruby-version +1 -1
  5. data/Gemfile.lock +215 -122
  6. data/data/gdshowsdb/1965.yaml +37 -20
  7. data/data/gdshowsdb/1966.yaml +948 -162
  8. data/data/gdshowsdb/1967.yaml +989 -181
  9. data/data/gdshowsdb/1968.yaml +1832 -557
  10. data/data/gdshowsdb/1969.yaml +2883 -2204
  11. data/data/gdshowsdb/1970.yaml +6143 -2086
  12. data/data/gdshowsdb/1971.yaml +2743 -2277
  13. data/data/gdshowsdb/1972.yaml +3788 -2934
  14. data/data/gdshowsdb/1973.yaml +2943 -2607
  15. data/data/gdshowsdb/1974.yaml +1534 -1354
  16. data/data/gdshowsdb/1975.yaml +77 -77
  17. data/data/gdshowsdb/1976.yaml +1466 -1350
  18. data/data/gdshowsdb/1977.yaml +1775 -1777
  19. data/data/gdshowsdb/1978.yaml +2522 -2444
  20. data/data/gdshowsdb/1979.yaml +2628 -2388
  21. data/data/gdshowsdb/1980.yaml +3494 -3188
  22. data/data/gdshowsdb/1981.yaml +3212 -3039
  23. data/data/gdshowsdb/1982.yaml +2359 -2089
  24. data/data/gdshowsdb/1983.yaml +2410 -2082
  25. data/data/gdshowsdb/1984.yaml +2227 -2029
  26. data/data/gdshowsdb/1985.yaml +2609 -2327
  27. data/data/gdshowsdb/1986.yaml +1661 -1464
  28. data/data/gdshowsdb/1987.yaml +2992 -2883
  29. data/data/gdshowsdb/1988.yaml +2741 -2451
  30. data/data/gdshowsdb/1989.yaml +2528 -2244
  31. data/data/gdshowsdb/1990.yaml +2674 -2230
  32. data/data/gdshowsdb/1991.yaml +2515 -2398
  33. data/data/gdshowsdb/1992.yaml +1747 -1574
  34. data/data/gdshowsdb/1993.yaml +2734 -2248
  35. data/data/gdshowsdb/1994.yaml +2897 -2324
  36. data/data/gdshowsdb/1995.yaml +1353 -1073
  37. data/data/gdshowsdb/song_refs.yaml +196 -116
  38. data/gdshowsdb.gemspec +1 -1
  39. data/lib/gdshowsdb/models/song.rb +3 -1
  40. data/lib/gdshowsdb/version.rb +1 -1
  41. data/lib/gdshowsdb.rb +2 -3
  42. metadata +5 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 371c09f55420039506a03b95c4487bcef766bdc15eac504cbf42dafea58a2a69
4
- data.tar.gz: 5655f0a28ce274306c59bb1848a570345344bd39e9b5ce9ae2d5a55a8f0b239c
3
+ metadata.gz: fffe5e88be22869a75aee93e5251705b75ff7e171c0608198221cdc55fa088f6
4
+ data.tar.gz: d5d447daa049a425461a848c7a9ffe1c926480fda077cf54f0ca690bfe06c790
5
5
  SHA512:
6
- metadata.gz: a5d1eaabeb7be67741f830924f39506ceb7d64d786b10d637f854fcc639376d0fcaa73188f409a7fd09bc2650c01933f1bfce16ba09eb330a6bcbf20846cb5f4
7
- data.tar.gz: a657db90b71965d287336065d16f7e32a2ebd08088fc2e311c85567084d9eeb9ef6df54913fdd300b404db8097c1f45f6df570f425f8addcb7deb27d89265822
6
+ metadata.gz: 579d9540b4290b624b54a7a96b33e080037b8d9ef38f9151dc01c44a544ad59da70a74f0aa169cdca27c3a4de769ab40df5b8c9ab2de849fc69b57006a0a179a
7
+ data.tar.gz: 17d005863b13790db88650ac0b9cf8a3aaa87449aa707f3450a0cf4972f1db4a8f511a7319c0eee8530214d9e534f8128528d45bb0005bbf96887877aad3ab0f
@@ -1,6 +1,10 @@
1
1
  name: CI
2
2
 
3
- on: [push, pull_request]
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
4
8
 
5
9
  jobs:
6
10
  build:
@@ -9,19 +13,18 @@ jobs:
9
13
 
10
14
  steps:
11
15
  - name: Checkout
12
- uses: actions/checkout@v1
16
+ uses: actions/checkout@v4
13
17
  - name: Setup System
14
18
  run:
15
19
  sudo apt-get install libsqlite3-dev
16
- - name: Set up Ruby 2.6
17
- uses: actions/setup-ruby@v1
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
18
22
  with:
19
- ruby-version: 2.6.x
20
- - name: Bundle
21
- run: |
22
- gem uninstall -aIx bundler
23
- gem install bundler
24
- bundle install
23
+ ruby-version: .ruby-version
24
+ bundler-cache: true
25
25
  - name: Test
26
- run:
26
+ run:
27
27
  bundle exec rake spec
28
+ - name: Smoke test sample.rb
29
+ run:
30
+ bundle exec ruby sample.rb
data/.gitignore CHANGED
@@ -4,3 +4,5 @@ pkg/*
4
4
  .rakeTasks
5
5
  rake
6
6
  gdshowsdb.db
7
+ vendor
8
+ .worktrees
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.3
1
+ 3.4.8
data/Gemfile.lock CHANGED
@@ -1,157 +1,250 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gdshowsdb (4.0.2)
4
+ gdshowsdb (5.0.1)
5
5
  friendly_id
6
- rails (>= 6.1)
6
+ rails (>= 8.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (6.1.5.1)
12
- actionpack (= 6.1.5.1)
13
- activesupport (= 6.1.5.1)
11
+ action_text-trix (2.1.16)
12
+ railties
13
+ actioncable (8.1.2)
14
+ actionpack (= 8.1.2)
15
+ activesupport (= 8.1.2)
14
16
  nio4r (~> 2.0)
15
17
  websocket-driver (>= 0.6.1)
16
- actionmailbox (6.1.5.1)
17
- actionpack (= 6.1.5.1)
18
- activejob (= 6.1.5.1)
19
- activerecord (= 6.1.5.1)
20
- activestorage (= 6.1.5.1)
21
- activesupport (= 6.1.5.1)
22
- mail (>= 2.7.1)
23
- actionmailer (6.1.5.1)
24
- actionpack (= 6.1.5.1)
25
- actionview (= 6.1.5.1)
26
- activejob (= 6.1.5.1)
27
- activesupport (= 6.1.5.1)
28
- mail (~> 2.5, >= 2.5.4)
29
- rails-dom-testing (~> 2.0)
30
- actionpack (6.1.5.1)
31
- actionview (= 6.1.5.1)
32
- activesupport (= 6.1.5.1)
33
- rack (~> 2.0, >= 2.0.9)
18
+ zeitwerk (~> 2.6)
19
+ actionmailbox (8.1.2)
20
+ actionpack (= 8.1.2)
21
+ activejob (= 8.1.2)
22
+ activerecord (= 8.1.2)
23
+ activestorage (= 8.1.2)
24
+ activesupport (= 8.1.2)
25
+ mail (>= 2.8.0)
26
+ actionmailer (8.1.2)
27
+ actionpack (= 8.1.2)
28
+ actionview (= 8.1.2)
29
+ activejob (= 8.1.2)
30
+ activesupport (= 8.1.2)
31
+ mail (>= 2.8.0)
32
+ rails-dom-testing (~> 2.2)
33
+ actionpack (8.1.2)
34
+ actionview (= 8.1.2)
35
+ activesupport (= 8.1.2)
36
+ nokogiri (>= 1.8.5)
37
+ rack (>= 2.2.4)
38
+ rack-session (>= 1.0.1)
34
39
  rack-test (>= 0.6.3)
35
- rails-dom-testing (~> 2.0)
36
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
- actiontext (6.1.5.1)
38
- actionpack (= 6.1.5.1)
39
- activerecord (= 6.1.5.1)
40
- activestorage (= 6.1.5.1)
41
- activesupport (= 6.1.5.1)
40
+ rails-dom-testing (~> 2.2)
41
+ rails-html-sanitizer (~> 1.6)
42
+ useragent (~> 0.16)
43
+ actiontext (8.1.2)
44
+ action_text-trix (~> 2.1.15)
45
+ actionpack (= 8.1.2)
46
+ activerecord (= 8.1.2)
47
+ activestorage (= 8.1.2)
48
+ activesupport (= 8.1.2)
49
+ globalid (>= 0.6.0)
42
50
  nokogiri (>= 1.8.5)
43
- actionview (6.1.5.1)
44
- activesupport (= 6.1.5.1)
51
+ actionview (8.1.2)
52
+ activesupport (= 8.1.2)
45
53
  builder (~> 3.1)
46
- erubi (~> 1.4)
47
- rails-dom-testing (~> 2.0)
48
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
- activejob (6.1.5.1)
50
- activesupport (= 6.1.5.1)
54
+ erubi (~> 1.11)
55
+ rails-dom-testing (~> 2.2)
56
+ rails-html-sanitizer (~> 1.6)
57
+ activejob (8.1.2)
58
+ activesupport (= 8.1.2)
51
59
  globalid (>= 0.3.6)
52
- activemodel (6.1.5.1)
53
- activesupport (= 6.1.5.1)
54
- activerecord (6.1.5.1)
55
- activemodel (= 6.1.5.1)
56
- activesupport (= 6.1.5.1)
57
- activestorage (6.1.5.1)
58
- actionpack (= 6.1.5.1)
59
- activejob (= 6.1.5.1)
60
- activerecord (= 6.1.5.1)
61
- activesupport (= 6.1.5.1)
60
+ activemodel (8.1.2)
61
+ activesupport (= 8.1.2)
62
+ activerecord (8.1.2)
63
+ activemodel (= 8.1.2)
64
+ activesupport (= 8.1.2)
65
+ timeout (>= 0.4.0)
66
+ activestorage (8.1.2)
67
+ actionpack (= 8.1.2)
68
+ activejob (= 8.1.2)
69
+ activerecord (= 8.1.2)
70
+ activesupport (= 8.1.2)
62
71
  marcel (~> 1.0)
63
- mini_mime (>= 1.1.0)
64
- activesupport (6.1.5.1)
65
- concurrent-ruby (~> 1.0, >= 1.0.2)
72
+ activesupport (8.1.2)
73
+ base64
74
+ bigdecimal
75
+ concurrent-ruby (~> 1.0, >= 1.3.1)
76
+ connection_pool (>= 2.2.5)
77
+ drb
66
78
  i18n (>= 1.6, < 2)
79
+ json
80
+ logger (>= 1.4.2)
67
81
  minitest (>= 5.1)
68
- tzinfo (~> 2.0)
69
- zeitwerk (~> 2.3)
70
- builder (3.2.4)
71
- concurrent-ruby (1.1.10)
82
+ securerandom (>= 0.3)
83
+ tzinfo (~> 2.0, >= 2.0.5)
84
+ uri (>= 0.13.1)
85
+ base64 (0.3.0)
86
+ bigdecimal (4.0.1)
87
+ builder (3.3.0)
88
+ concurrent-ruby (1.3.6)
89
+ connection_pool (3.0.2)
72
90
  crass (1.0.6)
73
- diff-lcs (1.4.4)
74
- erubi (1.10.0)
75
- friendly_id (5.4.2)
91
+ date (3.5.1)
92
+ diff-lcs (1.6.2)
93
+ drb (2.2.3)
94
+ erb (6.0.2)
95
+ erubi (1.13.1)
96
+ friendly_id (5.6.0)
76
97
  activerecord (>= 4.0.0)
77
- globalid (1.0.0)
78
- activesupport (>= 5.0)
79
- i18n (1.10.0)
98
+ globalid (1.3.0)
99
+ activesupport (>= 6.1)
100
+ i18n (1.14.8)
80
101
  concurrent-ruby (~> 1.0)
81
- loofah (2.16.0)
102
+ io-console (0.8.2)
103
+ irb (1.17.0)
104
+ pp (>= 0.6.0)
105
+ prism (>= 1.3.0)
106
+ rdoc (>= 4.0.0)
107
+ reline (>= 0.4.2)
108
+ json (2.18.1)
109
+ logger (1.7.0)
110
+ loofah (2.25.0)
82
111
  crass (~> 1.0.2)
83
- nokogiri (>= 1.5.9)
84
- mail (2.7.1)
112
+ nokogiri (>= 1.12.0)
113
+ mail (2.9.0)
114
+ logger
85
115
  mini_mime (>= 0.1.1)
86
- marcel (1.0.2)
87
- method_source (1.0.0)
88
- mini_mime (1.1.2)
89
- minitest (5.15.0)
90
- nio4r (2.5.8)
91
- nokogiri (1.13.4-x86_64-darwin)
116
+ net-imap
117
+ net-pop
118
+ net-smtp
119
+ marcel (1.1.0)
120
+ mini_mime (1.1.5)
121
+ minitest (6.0.2)
122
+ drb (~> 2.0)
123
+ prism (~> 1.5)
124
+ net-imap (0.6.3)
125
+ date
126
+ net-protocol
127
+ net-pop (0.1.2)
128
+ net-protocol
129
+ net-protocol (0.2.2)
130
+ timeout
131
+ net-smtp (0.5.1)
132
+ net-protocol
133
+ nio4r (2.7.5)
134
+ nokogiri (1.19.1-aarch64-linux-gnu)
135
+ racc (~> 1.4)
136
+ nokogiri (1.19.1-aarch64-linux-musl)
137
+ racc (~> 1.4)
138
+ nokogiri (1.19.1-arm-linux-gnu)
139
+ racc (~> 1.4)
140
+ nokogiri (1.19.1-arm-linux-musl)
141
+ racc (~> 1.4)
142
+ nokogiri (1.19.1-arm64-darwin)
92
143
  racc (~> 1.4)
93
- racc (1.6.0)
94
- rack (2.2.3)
95
- rack-test (1.1.0)
96
- rack (>= 1.0, < 3)
97
- rails (6.1.5.1)
98
- actioncable (= 6.1.5.1)
99
- actionmailbox (= 6.1.5.1)
100
- actionmailer (= 6.1.5.1)
101
- actionpack (= 6.1.5.1)
102
- actiontext (= 6.1.5.1)
103
- actionview (= 6.1.5.1)
104
- activejob (= 6.1.5.1)
105
- activemodel (= 6.1.5.1)
106
- activerecord (= 6.1.5.1)
107
- activestorage (= 6.1.5.1)
108
- activesupport (= 6.1.5.1)
144
+ nokogiri (1.19.1-x86_64-darwin)
145
+ racc (~> 1.4)
146
+ nokogiri (1.19.1-x86_64-linux-gnu)
147
+ racc (~> 1.4)
148
+ nokogiri (1.19.1-x86_64-linux-musl)
149
+ racc (~> 1.4)
150
+ pp (0.6.3)
151
+ prettyprint
152
+ prettyprint (0.2.0)
153
+ prism (1.9.0)
154
+ psych (5.3.1)
155
+ date
156
+ stringio
157
+ racc (1.8.1)
158
+ rack (3.2.5)
159
+ rack-session (2.1.1)
160
+ base64 (>= 0.1.0)
161
+ rack (>= 3.0.0)
162
+ rack-test (2.2.0)
163
+ rack (>= 1.3)
164
+ rackup (2.3.1)
165
+ rack (>= 3)
166
+ rails (8.1.2)
167
+ actioncable (= 8.1.2)
168
+ actionmailbox (= 8.1.2)
169
+ actionmailer (= 8.1.2)
170
+ actionpack (= 8.1.2)
171
+ actiontext (= 8.1.2)
172
+ actionview (= 8.1.2)
173
+ activejob (= 8.1.2)
174
+ activemodel (= 8.1.2)
175
+ activerecord (= 8.1.2)
176
+ activestorage (= 8.1.2)
177
+ activesupport (= 8.1.2)
109
178
  bundler (>= 1.15.0)
110
- railties (= 6.1.5.1)
111
- sprockets-rails (>= 2.0.0)
112
- rails-dom-testing (2.0.3)
113
- activesupport (>= 4.2.0)
179
+ railties (= 8.1.2)
180
+ rails-dom-testing (2.3.0)
181
+ activesupport (>= 5.0.0)
182
+ minitest
114
183
  nokogiri (>= 1.6)
115
- rails-html-sanitizer (1.4.2)
116
- loofah (~> 2.3)
117
- railties (6.1.5.1)
118
- actionpack (= 6.1.5.1)
119
- activesupport (= 6.1.5.1)
120
- method_source
184
+ rails-html-sanitizer (1.7.0)
185
+ loofah (~> 2.25)
186
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
187
+ railties (8.1.2)
188
+ actionpack (= 8.1.2)
189
+ activesupport (= 8.1.2)
190
+ irb (~> 1.13)
191
+ rackup (>= 1.0.0)
121
192
  rake (>= 12.2)
122
- thor (~> 1.0)
123
- rake (13.0.6)
124
- rspec (3.10.0)
125
- rspec-core (~> 3.10.0)
126
- rspec-expectations (~> 3.10.0)
127
- rspec-mocks (~> 3.10.0)
128
- rspec-core (3.10.1)
129
- rspec-support (~> 3.10.0)
130
- rspec-expectations (3.10.1)
193
+ thor (~> 1.0, >= 1.2.2)
194
+ tsort (>= 0.2)
195
+ zeitwerk (~> 2.6)
196
+ rake (13.3.1)
197
+ rdoc (7.2.0)
198
+ erb
199
+ psych (>= 4.0.0)
200
+ tsort
201
+ reline (0.6.3)
202
+ io-console (~> 0.5)
203
+ rspec (3.13.2)
204
+ rspec-core (~> 3.13.0)
205
+ rspec-expectations (~> 3.13.0)
206
+ rspec-mocks (~> 3.13.0)
207
+ rspec-core (3.13.6)
208
+ rspec-support (~> 3.13.0)
209
+ rspec-expectations (3.13.5)
131
210
  diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.10.0)
133
- rspec-mocks (3.10.2)
211
+ rspec-support (~> 3.13.0)
212
+ rspec-mocks (3.13.7)
134
213
  diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.10.0)
136
- rspec-support (3.10.2)
137
- sprockets (4.0.3)
138
- concurrent-ruby (~> 1.0)
139
- rack (> 1, < 3)
140
- sprockets-rails (3.4.2)
141
- actionpack (>= 5.2)
142
- activesupport (>= 5.2)
143
- sprockets (>= 3.0.0)
144
- sqlite3 (1.4.2)
145
- thor (1.2.1)
146
- tzinfo (2.0.4)
214
+ rspec-support (~> 3.13.0)
215
+ rspec-support (3.13.7)
216
+ securerandom (0.4.1)
217
+ sqlite3 (2.9.0-aarch64-linux-gnu)
218
+ sqlite3 (2.9.0-aarch64-linux-musl)
219
+ sqlite3 (2.9.0-arm-linux-gnu)
220
+ sqlite3 (2.9.0-arm-linux-musl)
221
+ sqlite3 (2.9.0-arm64-darwin)
222
+ sqlite3 (2.9.0-x86_64-darwin)
223
+ sqlite3 (2.9.0-x86_64-linux-gnu)
224
+ sqlite3 (2.9.0-x86_64-linux-musl)
225
+ stringio (3.2.0)
226
+ thor (1.5.0)
227
+ timeout (0.6.0)
228
+ tsort (0.2.0)
229
+ tzinfo (2.0.6)
147
230
  concurrent-ruby (~> 1.0)
148
- websocket-driver (0.7.5)
231
+ uri (1.1.1)
232
+ useragent (0.16.11)
233
+ websocket-driver (0.8.0)
234
+ base64
149
235
  websocket-extensions (>= 0.1.0)
150
236
  websocket-extensions (0.1.5)
151
- zeitwerk (2.5.4)
237
+ zeitwerk (2.7.5)
152
238
 
153
239
  PLATFORMS
154
- ruby
240
+ aarch64-linux-gnu
241
+ aarch64-linux-musl
242
+ arm-linux-gnu
243
+ arm-linux-musl
244
+ arm64-darwin
245
+ x86_64-darwin
246
+ x86_64-linux-gnu
247
+ x86_64-linux-musl
155
248
 
156
249
  DEPENDENCIES
157
250
  gdshowsdb!
@@ -160,4 +253,4 @@ DEPENDENCIES
160
253
  sqlite3
161
254
 
162
255
  BUNDLED WITH
163
- 2.3.12
256
+ 2.6.9
@@ -13,13 +13,25 @@
13
13
  :state: CA
14
14
  :country: US
15
15
  :sets: []
16
- 1965/05/27:
17
- :uuid: 128971ef-286f-4401-a617-28e795a30fe8
16
+ 1965/05/19:
17
+ :uuid: 47a0f20b-0636-4daf-9417-214efa8bea12
18
18
  :venue: Magoo's Pizza Parlor
19
19
  :city: Menlo Park
20
20
  :state: CA
21
21
  :country: US
22
22
  :sets: []
23
+ 1965/05/26:
24
+ :uuid: b355528c-9921-4d50-b6d6-f705a604674e
25
+ :venue: Magoo's Pizza Parlor
26
+ :city: Menlo Park
27
+ :state: CA
28
+ :country: US
29
+ :sets:
30
+ - :uuid: 2b4854c4-256c-439a-b28c-f7f0c099f751
31
+ :songs:
32
+ - :uuid: d9fb6417-c9bc-4511-a622-f0e1386d4c4a
33
+ :name: I'm A King Bee
34
+ :segued: false
23
35
  1965/06/18:
24
36
  :uuid: e7670295-e716-4f04-843c-e4411c82bda8
25
37
  :venue: Frenchy's
@@ -27,23 +39,16 @@
27
39
  :state: CA
28
40
  :country: US
29
41
  :sets: []
30
- 1965/08/01:
31
- :uuid: bcac6971-1cd7-4ecd-a895-56b1eebe68f8
32
- :venue: Cinnamon A
33
- :city: Redwood City
34
- :state: CA
35
- :country: US
36
- :sets: []
37
- 1965/09/01:
38
- :uuid: 03db9d40-e739-4e9a-a304-54e090e67321
39
- :venue: In Room
42
+ 1965/10/12:
43
+ :uuid: f7cf3c4f-8e48-4e8d-9dd8-1d4a91f0e7a3
44
+ :venue: Chalet Inn Room
40
45
  :city: Belmont
41
46
  :state: CA
42
47
  :country: US
43
48
  :sets: []
44
- 1965/12/01:
45
- :uuid: a00ae8ca-7a6e-4b76-87f9-0c03873996f9
46
- :venue: Pierre's
49
+ 1965/11/29:
50
+ :uuid: 41ef64b6-4626-49ba-a358-82fc879ca7d9
51
+ :venue: Matrix
47
52
  :city: San Francisco
48
53
  :state: CA
49
54
  :country: US
@@ -55,6 +60,13 @@
55
60
  :state: CA
56
61
  :country: US
57
62
  :sets: []
63
+ 1965/12/08:
64
+ :uuid: 04422cb5-5b28-4912-9f4d-effde3111599
65
+ :venue: Matrix
66
+ :city: San Francisco
67
+ :state: CA
68
+ :country: US
69
+ :sets: []
58
70
  1965/12/10:
59
71
  :uuid: 4c35959a-06f1-417a-8e69-67c4e1df9417
60
72
  :venue: Fillmore Auditorium
@@ -64,15 +76,20 @@
64
76
  :sets: []
65
77
  1965/12/11:
66
78
  :uuid: 604da57f-3f8b-4e67-8bf6-1b4783d10e13
67
- :venue: The Big Beat
68
- :city: Palo Alto
79
+ :venue: Muir Beach Lodge
80
+ :city: Muir Beach
69
81
  :state: CA
70
82
  :country: US
71
83
  :sets: []
72
84
  1965/12/18:
73
85
  :uuid: 5618738d-6841-4c1e-a71a-1f18b5ab879b
74
- :venue: Muir Beach Lodge
75
- :city: Muir Beach
86
+ :venue: The Big Beat Club
87
+ :city: Palo Alto
76
88
  :state: CA
77
89
  :country: US
78
- :sets: []
90
+ :sets:
91
+ - :uuid: 4d637022-6a21-4da7-a542-f4525bf32581
92
+ :songs:
93
+ - :uuid: 3d1becdf-e14e-4d47-b936-df3c91fcca30
94
+ :name: Midnight Hour
95
+ :segued: false