gdshowsdb 0.9.0
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.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/.rvmrc +4 -0
- data/.travis.yml +4 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +106 -0
- data/LICENSE.txt +22 -0
- data/README.md +49 -0
- data/Rakefile +4 -0
- data/data/gdshowsdb/1965.yaml +78 -0
- data/data/gdshowsdb/1966.yaml +780 -0
- data/data/gdshowsdb/1967.yaml +857 -0
- data/data/gdshowsdb/1968.yaml +1252 -0
- data/data/gdshowsdb/1969.yaml +1799 -0
- data/data/gdshowsdb/1970.yaml +3547 -0
- data/data/gdshowsdb/1971.yaml +1396 -0
- data/data/gdshowsdb/1972.yaml +6849 -0
- data/data/gdshowsdb/1973.yaml +6229 -0
- data/data/gdshowsdb/1974.yaml +3516 -0
- data/data/gdshowsdb/1975.yaml +207 -0
- data/data/gdshowsdb/1976.yaml +3226 -0
- data/data/gdshowsdb/1977.yaml +4469 -0
- data/data/gdshowsdb/1978.yaml +5681 -0
- data/data/gdshowsdb/1979.yaml +5487 -0
- data/data/gdshowsdb/1980.yaml +7133 -0
- data/data/gdshowsdb/1981.yaml +6347 -0
- data/data/gdshowsdb/1982.yaml +4475 -0
- data/data/gdshowsdb/1983.yaml +4561 -0
- data/data/gdshowsdb/1984.yaml +4431 -0
- data/data/gdshowsdb/1985.yaml +4810 -0
- data/data/gdshowsdb/1986.yaml +3029 -0
- data/data/gdshowsdb/1987.yaml +5958 -0
- data/data/gdshowsdb/1988.yaml +5398 -0
- data/data/gdshowsdb/1989.yaml +4979 -0
- data/data/gdshowsdb/1990.yaml +4941 -0
- data/data/gdshowsdb/1991.yaml +5269 -0
- data/data/gdshowsdb/1992.yaml +3576 -0
- data/data/gdshowsdb/1993.yaml +5178 -0
- data/data/gdshowsdb/1994.yaml +5206 -0
- data/data/gdshowsdb/1995.yaml +2931 -0
- data/data/gdshowsdb/shows-debug.yaml +138 -0
- data/data/gdshowsdb/song_refs.yaml +411 -0
- data/gdshowsdb.gemspec +23 -0
- data/lib/gdshowsdb/db/migrations/001_create_song_ref_table.rb +15 -0
- data/lib/gdshowsdb/db/migrations/002_import_song_refs.rb +14 -0
- data/lib/gdshowsdb/db/migrations/003_create_show_table.rb +22 -0
- data/lib/gdshowsdb/db/migrations/004_create_show_set_table.rb +15 -0
- data/lib/gdshowsdb/db/migrations/005_create_song_table.rb +18 -0
- data/lib/gdshowsdb/db/migrations/006_create_song_occurences_table.rb +17 -0
- data/lib/gdshowsdb/db/migrations/008_add_count_to_song_ref_table.rb +11 -0
- data/lib/gdshowsdb/db/migrations/009_import_shows.rb +45 -0
- data/lib/gdshowsdb/diff.rb +36 -0
- data/lib/gdshowsdb/generators/gdshowsdatabase_generator.rb +17 -0
- data/lib/gdshowsdb/generators/gdshowsdatabase_upgrade_generator.rb +49 -0
- data/lib/gdshowsdb/models/extensions/uuid.rb +9 -0
- data/lib/gdshowsdb/models/show.rb +58 -0
- data/lib/gdshowsdb/models/show_set.rb +40 -0
- data/lib/gdshowsdb/models/song.rb +72 -0
- data/lib/gdshowsdb/models/song_occurence.rb +9 -0
- data/lib/gdshowsdb/models/song_ref.rb +32 -0
- data/lib/gdshowsdb/set_db_extractor.rb +19 -0
- data/lib/gdshowsdb/set_diff.rb +10 -0
- data/lib/gdshowsdb/set_yaml_parser.rb +29 -0
- data/lib/gdshowsdb/show_db_extractor.rb +19 -0
- data/lib/gdshowsdb/show_diff.rb +12 -0
- data/lib/gdshowsdb/show_yaml_parser.rb +20 -0
- data/lib/gdshowsdb/song_db_extractor.rb +21 -0
- data/lib/gdshowsdb/song_diff.rb +10 -0
- data/lib/gdshowsdb/song_ref_db_extractror.rb +18 -0
- data/lib/gdshowsdb/song_ref_diff.rb +12 -0
- data/lib/gdshowsdb/song_ref_yaml_parser.rb +19 -0
- data/lib/gdshowsdb/song_yaml_parser.rb +25 -0
- data/lib/gdshowsdb/templates/update_migration.rb.erb +53 -0
- data/lib/gdshowsdb/version.rb +3 -0
- data/lib/gdshowsdb.rb +45 -0
- data/sample.rb +29 -0
- data/spec/gdshowsdb/diff_spec.rb +69 -0
- data/spec/gdshowsdb/models/show_set_spec.rb +29 -0
- data/spec/gdshowsdb/models/show_spec.rb +13 -0
- data/spec/gdshowsdb/models/song_spec.rb +72 -0
- data/spec/gdshowsdb/set_db_extractor_spec.rb +37 -0
- data/spec/gdshowsdb/set_yaml_parser_spec.rb +74 -0
- data/spec/gdshowsdb/show_db_extractor_spec.rb +25 -0
- data/spec/gdshowsdb/show_yaml_parser_spec.rb +42 -0
- data/spec/gdshowsdb/song_db_extractor_spec.rb +47 -0
- data/spec/gdshowsdb/song_ref_db_extractor_spec.rb +20 -0
- data/spec/gdshowsdb/song_ref_yaml_parser_spec.rb +19 -0
- data/spec/gdshowsdb/song_yaml_parser_spec.rb +93 -0
- data/spec/spec_helper.rb +15 -0
- metadata +186 -0
metadata
ADDED
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gdshowsdb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.9.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Jeff Smith
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-02-04 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.0.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: friendly_id
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 5.0.0.beta4
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 5.0.0.beta4
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: protected_attributes
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
description: All Grateful Dead show information in a relational database.
|
|
56
|
+
email:
|
|
57
|
+
- jefmsmit@gmail.com
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- ".gitignore"
|
|
63
|
+
- ".rvmrc"
|
|
64
|
+
- ".travis.yml"
|
|
65
|
+
- Gemfile
|
|
66
|
+
- Gemfile.lock
|
|
67
|
+
- LICENSE.txt
|
|
68
|
+
- README.md
|
|
69
|
+
- Rakefile
|
|
70
|
+
- data/gdshowsdb/1965.yaml
|
|
71
|
+
- data/gdshowsdb/1966.yaml
|
|
72
|
+
- data/gdshowsdb/1967.yaml
|
|
73
|
+
- data/gdshowsdb/1968.yaml
|
|
74
|
+
- data/gdshowsdb/1969.yaml
|
|
75
|
+
- data/gdshowsdb/1970.yaml
|
|
76
|
+
- data/gdshowsdb/1971.yaml
|
|
77
|
+
- data/gdshowsdb/1972.yaml
|
|
78
|
+
- data/gdshowsdb/1973.yaml
|
|
79
|
+
- data/gdshowsdb/1974.yaml
|
|
80
|
+
- data/gdshowsdb/1975.yaml
|
|
81
|
+
- data/gdshowsdb/1976.yaml
|
|
82
|
+
- data/gdshowsdb/1977.yaml
|
|
83
|
+
- data/gdshowsdb/1978.yaml
|
|
84
|
+
- data/gdshowsdb/1979.yaml
|
|
85
|
+
- data/gdshowsdb/1980.yaml
|
|
86
|
+
- data/gdshowsdb/1981.yaml
|
|
87
|
+
- data/gdshowsdb/1982.yaml
|
|
88
|
+
- data/gdshowsdb/1983.yaml
|
|
89
|
+
- data/gdshowsdb/1984.yaml
|
|
90
|
+
- data/gdshowsdb/1985.yaml
|
|
91
|
+
- data/gdshowsdb/1986.yaml
|
|
92
|
+
- data/gdshowsdb/1987.yaml
|
|
93
|
+
- data/gdshowsdb/1988.yaml
|
|
94
|
+
- data/gdshowsdb/1989.yaml
|
|
95
|
+
- data/gdshowsdb/1990.yaml
|
|
96
|
+
- data/gdshowsdb/1991.yaml
|
|
97
|
+
- data/gdshowsdb/1992.yaml
|
|
98
|
+
- data/gdshowsdb/1993.yaml
|
|
99
|
+
- data/gdshowsdb/1994.yaml
|
|
100
|
+
- data/gdshowsdb/1995.yaml
|
|
101
|
+
- data/gdshowsdb/shows-debug.yaml
|
|
102
|
+
- data/gdshowsdb/song_refs.yaml
|
|
103
|
+
- gdshowsdb.gemspec
|
|
104
|
+
- lib/gdshowsdb.rb
|
|
105
|
+
- lib/gdshowsdb/db/migrations/001_create_song_ref_table.rb
|
|
106
|
+
- lib/gdshowsdb/db/migrations/002_import_song_refs.rb
|
|
107
|
+
- lib/gdshowsdb/db/migrations/003_create_show_table.rb
|
|
108
|
+
- lib/gdshowsdb/db/migrations/004_create_show_set_table.rb
|
|
109
|
+
- lib/gdshowsdb/db/migrations/005_create_song_table.rb
|
|
110
|
+
- lib/gdshowsdb/db/migrations/006_create_song_occurences_table.rb
|
|
111
|
+
- lib/gdshowsdb/db/migrations/008_add_count_to_song_ref_table.rb
|
|
112
|
+
- lib/gdshowsdb/db/migrations/009_import_shows.rb
|
|
113
|
+
- lib/gdshowsdb/diff.rb
|
|
114
|
+
- lib/gdshowsdb/generators/gdshowsdatabase_generator.rb
|
|
115
|
+
- lib/gdshowsdb/generators/gdshowsdatabase_upgrade_generator.rb
|
|
116
|
+
- lib/gdshowsdb/models/extensions/uuid.rb
|
|
117
|
+
- lib/gdshowsdb/models/show.rb
|
|
118
|
+
- lib/gdshowsdb/models/show_set.rb
|
|
119
|
+
- lib/gdshowsdb/models/song.rb
|
|
120
|
+
- lib/gdshowsdb/models/song_occurence.rb
|
|
121
|
+
- lib/gdshowsdb/models/song_ref.rb
|
|
122
|
+
- lib/gdshowsdb/set_db_extractor.rb
|
|
123
|
+
- lib/gdshowsdb/set_diff.rb
|
|
124
|
+
- lib/gdshowsdb/set_yaml_parser.rb
|
|
125
|
+
- lib/gdshowsdb/show_db_extractor.rb
|
|
126
|
+
- lib/gdshowsdb/show_diff.rb
|
|
127
|
+
- lib/gdshowsdb/show_yaml_parser.rb
|
|
128
|
+
- lib/gdshowsdb/song_db_extractor.rb
|
|
129
|
+
- lib/gdshowsdb/song_diff.rb
|
|
130
|
+
- lib/gdshowsdb/song_ref_db_extractror.rb
|
|
131
|
+
- lib/gdshowsdb/song_ref_diff.rb
|
|
132
|
+
- lib/gdshowsdb/song_ref_yaml_parser.rb
|
|
133
|
+
- lib/gdshowsdb/song_yaml_parser.rb
|
|
134
|
+
- lib/gdshowsdb/templates/update_migration.rb.erb
|
|
135
|
+
- lib/gdshowsdb/version.rb
|
|
136
|
+
- sample.rb
|
|
137
|
+
- spec/gdshowsdb/diff_spec.rb
|
|
138
|
+
- spec/gdshowsdb/models/show_set_spec.rb
|
|
139
|
+
- spec/gdshowsdb/models/show_spec.rb
|
|
140
|
+
- spec/gdshowsdb/models/song_spec.rb
|
|
141
|
+
- spec/gdshowsdb/set_db_extractor_spec.rb
|
|
142
|
+
- spec/gdshowsdb/set_yaml_parser_spec.rb
|
|
143
|
+
- spec/gdshowsdb/show_db_extractor_spec.rb
|
|
144
|
+
- spec/gdshowsdb/show_yaml_parser_spec.rb
|
|
145
|
+
- spec/gdshowsdb/song_db_extractor_spec.rb
|
|
146
|
+
- spec/gdshowsdb/song_ref_db_extractor_spec.rb
|
|
147
|
+
- spec/gdshowsdb/song_ref_yaml_parser_spec.rb
|
|
148
|
+
- spec/gdshowsdb/song_yaml_parser_spec.rb
|
|
149
|
+
- spec/spec_helper.rb
|
|
150
|
+
homepage: http://github.com/jefmsmit/gdshowdb
|
|
151
|
+
licenses: []
|
|
152
|
+
metadata: {}
|
|
153
|
+
post_install_message:
|
|
154
|
+
rdoc_options: []
|
|
155
|
+
require_paths:
|
|
156
|
+
- lib
|
|
157
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
158
|
+
requirements:
|
|
159
|
+
- - ">="
|
|
160
|
+
- !ruby/object:Gem::Version
|
|
161
|
+
version: '0'
|
|
162
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
167
|
+
requirements: []
|
|
168
|
+
rubyforge_project:
|
|
169
|
+
rubygems_version: 2.4.3
|
|
170
|
+
signing_key:
|
|
171
|
+
specification_version: 4
|
|
172
|
+
summary: All Grateful Dead show information in a relational database.
|
|
173
|
+
test_files:
|
|
174
|
+
- spec/gdshowsdb/diff_spec.rb
|
|
175
|
+
- spec/gdshowsdb/models/show_set_spec.rb
|
|
176
|
+
- spec/gdshowsdb/models/show_spec.rb
|
|
177
|
+
- spec/gdshowsdb/models/song_spec.rb
|
|
178
|
+
- spec/gdshowsdb/set_db_extractor_spec.rb
|
|
179
|
+
- spec/gdshowsdb/set_yaml_parser_spec.rb
|
|
180
|
+
- spec/gdshowsdb/show_db_extractor_spec.rb
|
|
181
|
+
- spec/gdshowsdb/show_yaml_parser_spec.rb
|
|
182
|
+
- spec/gdshowsdb/song_db_extractor_spec.rb
|
|
183
|
+
- spec/gdshowsdb/song_ref_db_extractor_spec.rb
|
|
184
|
+
- spec/gdshowsdb/song_ref_yaml_parser_spec.rb
|
|
185
|
+
- spec/gdshowsdb/song_yaml_parser_spec.rb
|
|
186
|
+
- spec/spec_helper.rb
|