arclight 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.all-contributorsrc +450 -0
  3. data/.babelrc +3 -0
  4. data/.codeclimate.yml +5 -0
  5. data/.eslintrc +3 -0
  6. data/.rubocop.yml +19 -0
  7. data/.rubocop_todo.yml +15 -135
  8. data/.travis.yml +2 -2
  9. data/CONTRIBUTORS.md +79 -0
  10. data/README.md +21 -24
  11. data/Rakefile +0 -1
  12. data/app/assets/images/blacklight/bookmark.svg +1 -0
  13. data/app/assets/images/blacklight/collection.svg +5 -0
  14. data/app/assets/images/blacklight/compact.svg +1 -25
  15. data/app/assets/images/blacklight/container.svg +5 -0
  16. data/app/assets/images/blacklight/ead.svg +1 -0
  17. data/app/assets/images/blacklight/file.svg +5 -0
  18. data/app/assets/images/blacklight/folder.svg +1 -0
  19. data/app/assets/images/blacklight/list.svg +1 -0
  20. data/app/assets/images/blacklight/minus.svg +1 -0
  21. data/app/assets/images/blacklight/online.svg +5 -0
  22. data/app/assets/images/blacklight/pdf.svg +1 -0
  23. data/app/assets/images/blacklight/plus.svg +1 -0
  24. data/app/assets/images/blacklight/repository.svg +1 -0
  25. data/app/assets/javascripts/arclight/arclight.js +1 -3
  26. data/app/assets/javascripts/arclight/collection_navigation.js +36 -53
  27. data/app/assets/javascripts/arclight/collection_scrollspy.js +1 -1
  28. data/app/assets/javascripts/arclight/context_navigation.js +374 -0
  29. data/app/assets/javascripts/arclight/truncator.js.erb +8 -2
  30. data/app/assets/stylesheets/arclight/application.scss +3 -1
  31. data/app/assets/stylesheets/arclight/bootstrap_overrides.scss +23 -0
  32. data/app/assets/stylesheets/arclight/modules/context_navigation.scss +75 -0
  33. data/app/assets/stylesheets/arclight/modules/hierarchy_and_online_contents.scss +28 -35
  34. data/app/assets/stylesheets/arclight/modules/highlights.scss +2 -1
  35. data/app/assets/stylesheets/arclight/modules/layout.scss +128 -14
  36. data/app/assets/stylesheets/arclight/modules/mastheads.scss +27 -5
  37. data/app/assets/stylesheets/arclight/modules/repositories.scss +1 -5
  38. data/app/assets/stylesheets/arclight/modules/repository_card.scss +6 -7
  39. data/app/assets/stylesheets/arclight/modules/search_results.scss +145 -24
  40. data/app/assets/stylesheets/arclight/modules/show_collection.scss +38 -59
  41. data/app/assets/stylesheets/arclight/responsive.scss +13 -0
  42. data/app/assets/stylesheets/arclight/variables.scss +21 -1
  43. data/app/controllers/concerns/arclight/ead_format_helpers.rb +225 -0
  44. data/app/controllers/concerns/arclight/field_config_helpers.rb +23 -7
  45. data/app/factories/blacklight_field_configuration_factory.rb +1 -0
  46. data/app/helpers/arclight_helper.rb +197 -35
  47. data/app/models/arclight/document_downloads.rb +125 -0
  48. data/app/models/arclight/parent.rb +4 -2
  49. data/app/models/arclight/parents.rb +6 -4
  50. data/app/models/arclight/requests/aeon_external_request.rb +42 -0
  51. data/app/models/arclight/requests/aeon_web_ead.rb +47 -0
  52. data/app/models/arclight/requests/google_form.rb +2 -2
  53. data/app/models/concerns/arclight/catalog.rb +14 -2
  54. data/app/models/concerns/arclight/search_behavior.rb +27 -12
  55. data/app/models/concerns/arclight/solr_document.rb +29 -7
  56. data/app/views/arclight/_requests.html.erb +7 -0
  57. data/app/views/arclight/repositories/_in_person_repository.html.erb +1 -1
  58. data/app/views/arclight/repositories/_repository.html.erb +2 -2
  59. data/app/views/arclight/repositories/_repository_contact.html.erb +9 -0
  60. data/app/views/arclight/repositories/index.html.erb +3 -0
  61. data/app/views/arclight/repositories/show.html.erb +5 -4
  62. data/app/views/arclight/requests/_aeon_external_request_endpoint.html.erb +9 -0
  63. data/app/views/arclight/requests/_aeon_web_ead.html.erb +7 -0
  64. data/app/views/arclight/requests/_google_form.html.erb +2 -1
  65. data/app/views/arclight/viewers/_oembed.html.erb +2 -1
  66. data/app/views/catalog/_access_contents.html.erb +15 -0
  67. data/app/views/catalog/_arclight_abstract_or_scope.html.erb +5 -0
  68. data/app/views/catalog/_arclight_bookmark_control.html.erb +38 -0
  69. data/app/views/catalog/_arclight_document_header_icon.html.erb +1 -0
  70. data/app/views/catalog/_arclight_index_compact_default.html.erb +18 -11
  71. data/app/views/catalog/_arclight_index_default.html.erb +45 -0
  72. data/app/views/catalog/_arclight_index_group_document_compact_default.html.erb +19 -0
  73. data/app/views/catalog/_arclight_index_group_document_default.html.erb +18 -0
  74. data/app/views/catalog/_arclight_online_content_indicator.html.erb +1 -3
  75. data/app/views/catalog/_collection_contents.html.erb +2 -10
  76. data/app/views/catalog/_collection_context.html.erb +15 -0
  77. data/app/views/catalog/_collection_context_nav.html.erb +12 -0
  78. data/app/views/catalog/_collection_online_contents.html.erb +3 -3
  79. data/app/views/catalog/_component_context.html.erb +5 -0
  80. data/app/views/catalog/_containers.html.erb +3 -0
  81. data/app/views/catalog/_context_sidebar.html.erb +2 -2
  82. data/app/views/catalog/_document_downloads.html.erb +14 -0
  83. data/app/views/catalog/_group.html.erb +21 -0
  84. data/app/views/catalog/_group_header_compact_default.html.erb +15 -0
  85. data/app/views/catalog/_group_header_default.html.erb +20 -0
  86. data/app/views/catalog/_group_toggle.html.erb +10 -0
  87. data/app/views/catalog/_home.html.erb +1 -1
  88. data/app/views/catalog/_index_breadcrumb_default.html.erb +5 -2
  89. data/app/views/catalog/_index_collection_context_default.html.erb +53 -0
  90. data/app/views/catalog/_index_header.html.erb +3 -3
  91. data/app/views/catalog/_index_online_contents_default.html.erb +1 -1
  92. data/app/views/catalog/_online_content_label.html.erb +5 -0
  93. data/app/views/catalog/_search_form.html.erb +34 -0
  94. data/app/views/catalog/_search_results.html.erb +1 -4
  95. data/app/views/catalog/_show_actions_box_default.html.erb +27 -0
  96. data/app/views/catalog/_show_breadcrumbs_default.html.erb +5 -20
  97. data/app/views/catalog/_show_collection.html.erb +42 -24
  98. data/app/views/catalog/_show_default.html.erb +63 -35
  99. data/app/views/catalog/_show_upper_metadata_default.html.erb +1 -1
  100. data/app/views/catalog/_sort_and_per_page.html.erb +8 -0
  101. data/app/views/catalog/_within_collection_dropdown.html.erb +26 -0
  102. data/app/views/shared/_breadcrumbs.html.erb +4 -4
  103. data/app/views/shared/_context_sidebar.html.erb +2 -2
  104. data/app/views/shared/_header_navbar.html.erb +13 -17
  105. data/app/views/shared/_show_breadcrumbs.html.erb +27 -0
  106. data/arclight.gemspec +5 -6
  107. data/config/i18n-tasks.yml +2 -1
  108. data/config/locales/arclight.en.yml +54 -21
  109. data/config/repositories.yml +0 -0
  110. data/lib/arclight/engine.rb +22 -12
  111. data/lib/arclight/hash_absolute_xpath.rb +11 -7
  112. data/lib/arclight/level_label.rb +46 -0
  113. data/lib/arclight/normalized_date.rb +2 -2
  114. data/lib/arclight/normalized_id.rb +1 -0
  115. data/lib/arclight/normalized_title.rb +1 -0
  116. data/lib/arclight/repository.rb +58 -5
  117. data/lib/arclight/traject/ead2_config.rb +178 -159
  118. data/lib/arclight/traject/nokogiri_namespaceless_reader.rb +22 -0
  119. data/lib/arclight/version.rb +1 -1
  120. data/lib/arclight/viewers/oembed.rb +1 -0
  121. data/lib/arclight/year_range.rb +9 -1
  122. data/lib/generators/arclight/install_generator.rb +5 -1
  123. data/lib/generators/arclight/templates/catalog_controller.rb +128 -100
  124. data/lib/generators/arclight/templates/config/downloads.yml +12 -0
  125. data/lib/generators/arclight/templates/config/repositories.yml +20 -2
  126. data/lib/generators/arclight/update_generator.rb +1 -1
  127. data/lib/tasks/index.rake +18 -20
  128. data/package.json +8 -1
  129. data/solr/conf/schema.xml +51 -292
  130. data/solr/conf/solrconfig.xml +40 -125
  131. data/tasks/arclight.rake +1 -0
  132. data/vendor/assets/javascripts/responsiveTruncator.js +2 -2
  133. metadata +71 -44
  134. data/app/assets/javascripts/arclight/collection_context.js +0 -18
  135. data/app/assets/javascripts/arclight/component_ancestors.js +0 -56
  136. data/app/assets/javascripts/arclight/search_results.js +0 -15
  137. data/app/assets/stylesheets/arclight/modules/sidebar.scss +0 -21
  138. data/app/views/catalog/_collection_count.html.erb +0 -7
  139. data/app/views/catalog/_collection_downloads.html.erb +0 -15
  140. data/app/views/catalog/_collection_overview.html.erb +0 -7
  141. data/app/views/catalog/_component_contents.html.erb +0 -16
  142. data/app/views/catalog/_component_overview.html.erb +0 -40
  143. data/app/views/catalog/_index_header_hierarchy_default.html.erb +0 -42
  144. data/app/views/catalog/_index_hierarchy_default.html.erb +0 -28
  145. data/app/views/catalog/_results_histogram.html.erb +0 -15
  146. data/app/views/catalog/_show_component_sidebar.html.erb +0 -12
  147. data/app/views/catalog/_show_sidebar.html.erb +0 -22
  148. data/lib/arclight/custom_component.rb +0 -99
  149. data/lib/arclight/custom_document.rb +0 -93
  150. data/lib/arclight/indexer.rb +0 -9
  151. data/lib/arclight/shared_indexing_behavior.rb +0 -97
  152. data/lib/arclight/shared_terminology_behavior.rb +0 -65
  153. data/lib/arclight/solr_ead_indexer_ext.rb +0 -155
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed0ceaf7e03fb194a6ea2981582c688924e78f9024aacbef9ca18cb99971e9a7
4
- data.tar.gz: 786a90d77e725fe19f247dea85c0da2b811c87bee38ed29713c338692b90368f
3
+ metadata.gz: c1e2cb448d566788ea1305d2c0d8637427db85d1e053c58e53aa815a242b61fd
4
+ data.tar.gz: 9894a2d18a455ebe5a8e73d8c8fc12b85c47bec741b9633bfeab6d6e68610788
5
5
  SHA512:
6
- metadata.gz: 96d493efd656d72772ed0167715b3698df1d32af0bf81a5f9712bab2c7f992ad5836a713d06c7b28d35ed3069bdbd149dd2b92ab623e1dd51ed142b039649cea
7
- data.tar.gz: 43a811a99449328b75bafbda1f41d4b6e362323656ecc2d899bd6e5cc05acfdbcaac27e6ba842fe500d253cd6be4697f330f72dc19e4c2ee44e2215e937f8230
6
+ metadata.gz: 445ae2035ef21b80534d7cdfd6ee3d2996ce4504cb7e86598036d21c26808f7cafab2973d41e671492a4d28b238fce751bedfa5f8b601eb7cbe16faa17442445
7
+ data.tar.gz: 0c2782bd753200360c9b17b82a01ac7de3610a58584def844a97ba0b4d1bf7ce25bb4171c75f938b9fc57d142e554d032625b5c8b0c2d10ea06279a3da19c642
@@ -0,0 +1,450 @@
1
+ {
2
+ "projectName": "arclight",
3
+ "projectOwner": "projectblacklight",
4
+ "repoType": "github",
5
+ "repoHost": "https://github.com",
6
+ "files": [
7
+ "CONTRIBUTORS.md",
8
+ "README.md"
9
+ ],
10
+ "imageSize": 125,
11
+ "commit": false,
12
+ "commitConvention": "none",
13
+ "types": {
14
+ "analysis": {
15
+ "symbol": "🔬",
16
+ "description": "Functional requirements and related research"
17
+ },
18
+ "inProduction": {
19
+ "symbol": "🏆",
20
+ "description": "Has a production implementation"
21
+ },
22
+ "productOwner": {
23
+ "symbol": "🗺",
24
+ "description": "Product owner"
25
+ }
26
+ },
27
+ "contributors": [
28
+ {
29
+ "login": "seanaery",
30
+ "name": "Sean Aery",
31
+ "avatar_url": "https://avatars3.githubusercontent.com/u/3933756?v=4",
32
+ "profile": "https://github.com/seanaery",
33
+ "contributions": [
34
+ "code"
35
+ ]
36
+ },
37
+ {
38
+ "login": "helrond",
39
+ "name": "Hillel Arnold",
40
+ "avatar_url": "https://avatars0.githubusercontent.com/u/607621?v=4",
41
+ "profile": "http://hillelarnold.com",
42
+ "contributions": [
43
+ "analysis",
44
+ "userTesting"
45
+ ]
46
+ },
47
+ {
48
+ "login": "cbeer",
49
+ "name": "Chris Beer",
50
+ "avatar_url": "https://avatars1.githubusercontent.com/u/111218?v=4",
51
+ "profile": "http://cbeer.info",
52
+ "contributions": [
53
+ "code",
54
+ "doc"
55
+ ]
56
+ },
57
+ {
58
+ "login": "labradford",
59
+ "name": "Lea Ann Bradford",
60
+ "avatar_url": "https://avatars3.githubusercontent.com/u/18175797?v=4",
61
+ "profile": "http://leaannbradford.com",
62
+ "contributions": [
63
+ "code"
64
+ ]
65
+ },
66
+ {
67
+ "login": "christinach",
68
+ "name": "Christina Chortaria",
69
+ "avatar_url": "https://avatars0.githubusercontent.com/u/9905193?v=4",
70
+ "profile": "http://actspatial.com",
71
+ "contributions": [
72
+ "code"
73
+ ]
74
+ },
75
+ {
76
+ "login": "mark-cooper",
77
+ "name": "Mark Cooper",
78
+ "avatar_url": "https://avatars1.githubusercontent.com/u/551470?v=4",
79
+ "profile": "https://github.com/mark-cooper",
80
+ "contributions": [
81
+ "code",
82
+ "plugin"
83
+ ]
84
+ },
85
+ {
86
+ "login": "escowles",
87
+ "name": "Esmé Cowles",
88
+ "avatar_url": "https://avatars3.githubusercontent.com/u/856924?v=4",
89
+ "profile": "http://knittles.ticklefish.org/",
90
+ "contributions": [
91
+ "business",
92
+ "analysis"
93
+ ]
94
+ },
95
+ {
96
+ "login": "tomcramer",
97
+ "name": "Tom Cramer",
98
+ "avatar_url": "https://avatars3.githubusercontent.com/u/1054837?v=4",
99
+ "profile": "https://github.com/tomcramer",
100
+ "contributions": [
101
+ "business"
102
+ ]
103
+ },
104
+ {
105
+ "login": "mdalmau",
106
+ "name": "Michelle Dalmau",
107
+ "avatar_url": "https://avatars0.githubusercontent.com/u/573273?v=4",
108
+ "profile": "https://github.com/mdalmau",
109
+ "contributions": [
110
+ "business"
111
+ ]
112
+ },
113
+ {
114
+ "login": "billdueber",
115
+ "name": "Bill Dueber",
116
+ "avatar_url": "https://avatars0.githubusercontent.com/u/114006?v=4",
117
+ "profile": "http://robotlibrarian.billdueber.com/",
118
+ "contributions": [
119
+ "analysis",
120
+ "code"
121
+ ]
122
+ },
123
+ {
124
+ "login": "jwd",
125
+ "name": "Jon Dunn",
126
+ "avatar_url": "https://avatars1.githubusercontent.com/u/842343?v=4",
127
+ "profile": "https://github.com/jwd",
128
+ "contributions": [
129
+ "business"
130
+ ]
131
+ },
132
+ {
133
+ "login": "eckardm",
134
+ "name": "Max Eckard",
135
+ "avatar_url": "https://avatars1.githubusercontent.com/u/7072443?v=4",
136
+ "profile": "https://github.com/eckardm",
137
+ "contributions": [
138
+ "analysis",
139
+ "productOwner",
140
+ "userTesting"
141
+ ]
142
+ },
143
+ {
144
+ "login": "jrgriffiniii",
145
+ "name": "James R. Griffin III",
146
+ "avatar_url": "https://avatars0.githubusercontent.com/u/1443986?v=4",
147
+ "profile": "https://github.com/jrgriffiniii",
148
+ "contributions": [
149
+ "code"
150
+ ]
151
+ },
152
+ {
153
+ "login": "p-galligan",
154
+ "name": "Patrick Galligan",
155
+ "avatar_url": "https://avatars2.githubusercontent.com/u/2585069?v=4",
156
+ "profile": "https://github.com/p-galligan",
157
+ "contributions": [
158
+ "userTesting"
159
+ ]
160
+ },
161
+ {
162
+ "login": "ggeisler",
163
+ "name": "Gary Geisler",
164
+ "avatar_url": "https://avatars1.githubusercontent.com/u/101482?v=4",
165
+ "profile": "http://ggeisler.com",
166
+ "contributions": [
167
+ "code",
168
+ "design"
169
+ ]
170
+ },
171
+ {
172
+ "login": "bonniegee",
173
+ "name": "Bonnie Gordon",
174
+ "avatar_url": "https://avatars3.githubusercontent.com/u/8737364?v=4",
175
+ "profile": "https://github.com/bonniegee",
176
+ "contributions": [
177
+ "userTesting"
178
+ ]
179
+ },
180
+ {
181
+ "login": "mswendyh",
182
+ "name": "Wendy Hagenmaier",
183
+ "avatar_url": "https://avatars1.githubusercontent.com/u/7033667?v=4",
184
+ "profile": "https://github.com/mswendyh",
185
+ "contributions": [
186
+ "analysis"
187
+ ]
188
+ },
189
+ {
190
+ "name": "Jim Halliday",
191
+ "avatar_url": "http://gravatar.com/avatar/8b53dcb509d4b1fe8dd74da6a94395ef.jpg?d=retro",
192
+ "contributions": [
193
+ "business"
194
+ ]
195
+ },
196
+ {
197
+ "login": "jlhardes",
198
+ "name": "Julie Hardesty",
199
+ "avatar_url": "https://avatars1.githubusercontent.com/u/3440166?v=4",
200
+ "profile": "https://github.com/jlhardes",
201
+ "contributions": [
202
+ "analysis",
203
+ "productOwner"
204
+ ]
205
+ },
206
+ {
207
+ "login": "drh-stanford",
208
+ "name": "Darren Hardy",
209
+ "avatar_url": "https://avatars3.githubusercontent.com/u/1861171?v=4",
210
+ "profile": "http://stanford.edu/~drh",
211
+ "contributions": [
212
+ "code",
213
+ "doc"
214
+ ]
215
+ },
216
+ {
217
+ "login": "drhardy",
218
+ "name": "Darren Hardy",
219
+ "avatar_url": "https://avatars3.githubusercontent.com/u/25580222?v=4",
220
+ "profile": "https://github.com/drhardy",
221
+ "contributions": [
222
+ "code"
223
+ ]
224
+ },
225
+ {
226
+ "login": "regineheberlein",
227
+ "name": "Regine Heberlein",
228
+ "avatar_url": "https://avatars1.githubusercontent.com/u/5940563?v=4",
229
+ "profile": "https://github.com/regineheberlein",
230
+ "contributions": [
231
+ "analysis",
232
+ "productOwner"
233
+ ]
234
+ },
235
+ {
236
+ "login": "noahgh221",
237
+ "name": "Noah Huffman",
238
+ "avatar_url": "https://avatars3.githubusercontent.com/u/7328518?v=4",
239
+ "profile": "https://github.com/noahgh221",
240
+ "contributions": [
241
+ "analysis",
242
+ "productOwner"
243
+ ]
244
+ },
245
+ {
246
+ "login": "njaffer",
247
+ "name": "Nabeela Jaffer",
248
+ "avatar_url": "https://avatars0.githubusercontent.com/u/12487929?v=4",
249
+ "profile": "https://github.com/njaffer",
250
+ "contributions": [
251
+ "analysis",
252
+ "business"
253
+ ]
254
+ },
255
+ {
256
+ "login": "jkeck",
257
+ "name": "Jessie Keck",
258
+ "avatar_url": "https://avatars0.githubusercontent.com/u/96776?v=4",
259
+ "profile": "https://github.com/jkeck",
260
+ "contributions": [
261
+ "code",
262
+ "doc"
263
+ ]
264
+ },
265
+ {
266
+ "login": "gordonleacock",
267
+ "name": "Gordon Leacock",
268
+ "avatar_url": "https://avatars3.githubusercontent.com/u/12927191?v=4",
269
+ "profile": "https://github.com/gordonleacock",
270
+ "contributions": [
271
+ "code",
272
+ "doc"
273
+ ]
274
+ },
275
+ {
276
+ "login": "anarchivist",
277
+ "name": "Mark A. Matienzo",
278
+ "avatar_url": "https://avatars0.githubusercontent.com/u/73732?v=4",
279
+ "profile": "https://matienzo.org/",
280
+ "contributions": [
281
+ "projectManagement",
282
+ "business",
283
+ "analysis",
284
+ "productOwner"
285
+ ]
286
+ },
287
+ {
288
+ "login": "archivistsarah",
289
+ "name": "Sarah Newhouse",
290
+ "avatar_url": "https://avatars0.githubusercontent.com/u/25084902?v=4",
291
+ "profile": "https://github.com/archivistsarah",
292
+ "contributions": [
293
+ "analysis"
294
+ ]
295
+ },
296
+ {
297
+ "login": "grepcats",
298
+ "name": "Kayla Ondracek",
299
+ "avatar_url": "https://avatars0.githubusercontent.com/u/7513448?v=4",
300
+ "profile": "https://github.com/grepcats",
301
+ "contributions": [
302
+ "analysis"
303
+ ]
304
+ },
305
+ {
306
+ "login": "djpillen",
307
+ "name": "Dallas Pillen",
308
+ "avatar_url": "https://avatars3.githubusercontent.com/u/11635158?v=4",
309
+ "profile": "https://github.com/djpillen",
310
+ "contributions": [
311
+ "code",
312
+ "userTesting"
313
+ ]
314
+ },
315
+ {
316
+ "login": "cmkpowell",
317
+ "name": "Chris Powell",
318
+ "avatar_url": "https://avatars1.githubusercontent.com/u/16540397?v=4",
319
+ "profile": "https://github.com/cmkpowell",
320
+ "contributions": [
321
+ "analysis",
322
+ "productOwner"
323
+ ]
324
+ },
325
+ {
326
+ "login": "mejackreed",
327
+ "name": "Jack Reed",
328
+ "avatar_url": "https://avatars0.githubusercontent.com/u/1656824?v=4",
329
+ "profile": "https://www.jack-reed.com/",
330
+ "contributions": [
331
+ "code",
332
+ "doc"
333
+ ]
334
+ },
335
+ {
336
+ "login": "John-Rees",
337
+ "name": "John Rees",
338
+ "avatar_url": "https://avatars1.githubusercontent.com/u/29233549?v=4",
339
+ "profile": "https://github.com/John-Rees",
340
+ "contributions": [
341
+ "analysis"
342
+ ]
343
+ },
344
+ {
345
+ "login": "joshschneider",
346
+ "name": "Josh Schneider",
347
+ "avatar_url": "https://avatars3.githubusercontent.com/u/12468197?v=4",
348
+ "profile": "https://github.com/joshschneider",
349
+ "contributions": [
350
+ "analysis",
351
+ "productOwner"
352
+ ]
353
+ },
354
+ {
355
+ "login": "willsexton",
356
+ "name": "Will Sexton",
357
+ "avatar_url": "https://avatars2.githubusercontent.com/u/1359320?v=4",
358
+ "profile": "https://github.com/willsexton",
359
+ "contributions": [
360
+ "business"
361
+ ]
362
+ },
363
+ {
364
+ "login": "shallcro",
365
+ "name": "Mike Shallcross",
366
+ "avatar_url": "https://avatars2.githubusercontent.com/u/43279347?v=4",
367
+ "profile": "https://github.com/shallcro",
368
+ "contributions": [
369
+ "analysis"
370
+ ]
371
+ },
372
+ {
373
+ "login": "remocrevo",
374
+ "name": "Remington Steed",
375
+ "avatar_url": "https://avatars1.githubusercontent.com/u/8701105?v=4",
376
+ "profile": "https://github.com/remocrevo",
377
+ "contributions": [
378
+ "code"
379
+ ]
380
+ },
381
+ {
382
+ "login": "tampakis",
383
+ "name": "Nikitas Tampakis",
384
+ "avatar_url": "https://avatars2.githubusercontent.com/u/4650153?v=4",
385
+ "profile": "https://github.com/tampakis",
386
+ "contributions": [
387
+ "analysis"
388
+ ]
389
+ },
390
+ {
391
+ "login": "estelendur",
392
+ "name": "Esty Thomas",
393
+ "avatar_url": "https://avatars0.githubusercontent.com/u/10409866?v=4",
394
+ "profile": "https://github.com/estelendur",
395
+ "contributions": [
396
+ "code"
397
+ ]
398
+ },
399
+ {
400
+ "login": "camillevilla",
401
+ "name": "Camille Villa",
402
+ "avatar_url": "https://avatars2.githubusercontent.com/u/5402927?v=4",
403
+ "profile": "http://camillevilla.github.io",
404
+ "contributions": [
405
+ "code",
406
+ "doc"
407
+ ]
408
+ },
409
+ {
410
+ "login": "jvine",
411
+ "name": "Jennifer Vine",
412
+ "avatar_url": "https://avatars0.githubusercontent.com/u/6945691?v=4",
413
+ "profile": "https://github.com/jvine",
414
+ "contributions": [
415
+ "design"
416
+ ]
417
+ },
418
+ {
419
+ "login": "jweise",
420
+ "name": "John Weise",
421
+ "avatar_url": "https://avatars2.githubusercontent.com/u/114413?v=4",
422
+ "profile": "https://github.com/jweise",
423
+ "contributions": [
424
+ "business"
425
+ ]
426
+ },
427
+ {
428
+ "login": "gwiedeman",
429
+ "name": "Gregory Wiedeman",
430
+ "avatar_url": "https://avatars0.githubusercontent.com/u/10030353?v=4",
431
+ "profile": "https://github.com/gwiedeman",
432
+ "contributions": [
433
+ "code",
434
+ "bug",
435
+ "userTesting",
436
+ "inProduction"
437
+ ]
438
+ },
439
+ {
440
+ "login": "lauraw15",
441
+ "name": "Laura Wilsey",
442
+ "avatar_url": "https://avatars2.githubusercontent.com/u/6343788?v=4",
443
+ "profile": "https://github.com/lauraw15",
444
+ "contributions": [
445
+ "analysis"
446
+ ]
447
+ }
448
+ ],
449
+ "contributorsPerLine": 5
450
+ }