finery 3.0.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.
Files changed (153) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +426 -0
  3. data/CONTRIBUTING.md +49 -0
  4. data/LICENSE.txt +25 -0
  5. data/README.md +1144 -0
  6. data/app/assets/fonts/blazer/glyphicons-halflings-regular.eot +0 -0
  7. data/app/assets/fonts/blazer/glyphicons-halflings-regular.svg +288 -0
  8. data/app/assets/fonts/blazer/glyphicons-halflings-regular.ttf +0 -0
  9. data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff +0 -0
  10. data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff2 +0 -0
  11. data/app/assets/images/blazer/favicon.png +0 -0
  12. data/app/assets/javascripts/blazer/Sortable.js +3709 -0
  13. data/app/assets/javascripts/blazer/ace/ace.js +19630 -0
  14. data/app/assets/javascripts/blazer/ace/ext-language_tools.js +1981 -0
  15. data/app/assets/javascripts/blazer/ace/mode-sql.js +215 -0
  16. data/app/assets/javascripts/blazer/ace/snippets/sql.js +16 -0
  17. data/app/assets/javascripts/blazer/ace/snippets/text.js +9 -0
  18. data/app/assets/javascripts/blazer/ace/theme-twilight.js +18 -0
  19. data/app/assets/javascripts/blazer/ace.js +6 -0
  20. data/app/assets/javascripts/blazer/application.js +87 -0
  21. data/app/assets/javascripts/blazer/bootstrap.js +2580 -0
  22. data/app/assets/javascripts/blazer/chart.umd.js +13 -0
  23. data/app/assets/javascripts/blazer/chartjs-adapter-date-fns.bundle.js +6322 -0
  24. data/app/assets/javascripts/blazer/chartjs-plugin-annotation.min.js +7 -0
  25. data/app/assets/javascripts/blazer/chartkick.js +2570 -0
  26. data/app/assets/javascripts/blazer/daterangepicker.js +1578 -0
  27. data/app/assets/javascripts/blazer/fuzzysearch.js +24 -0
  28. data/app/assets/javascripts/blazer/highlight.min.js +466 -0
  29. data/app/assets/javascripts/blazer/jquery.js +10872 -0
  30. data/app/assets/javascripts/blazer/jquery.stickytableheaders.js +325 -0
  31. data/app/assets/javascripts/blazer/mapkick.bundle.js +1029 -0
  32. data/app/assets/javascripts/blazer/moment-timezone-with-data.js +1548 -0
  33. data/app/assets/javascripts/blazer/moment.js +5685 -0
  34. data/app/assets/javascripts/blazer/queries.js +130 -0
  35. data/app/assets/javascripts/blazer/rails-ujs.js +746 -0
  36. data/app/assets/javascripts/blazer/routes.js +26 -0
  37. data/app/assets/javascripts/blazer/selectize.js +3891 -0
  38. data/app/assets/javascripts/blazer/stupidtable-custom-settings.js +13 -0
  39. data/app/assets/javascripts/blazer/stupidtable.js +281 -0
  40. data/app/assets/javascripts/blazer/vue.global.prod.js +1 -0
  41. data/app/assets/stylesheets/blazer/application.css +243 -0
  42. data/app/assets/stylesheets/blazer/bootstrap-propshaft.css +10 -0
  43. data/app/assets/stylesheets/blazer/bootstrap-sprockets.css.erb +10 -0
  44. data/app/assets/stylesheets/blazer/bootstrap.css +6828 -0
  45. data/app/assets/stylesheets/blazer/daterangepicker.css +410 -0
  46. data/app/assets/stylesheets/blazer/github.css +125 -0
  47. data/app/assets/stylesheets/blazer/selectize.css +403 -0
  48. data/app/controllers/blazer/base_controller.rb +133 -0
  49. data/app/controllers/blazer/checks_controller.rb +56 -0
  50. data/app/controllers/blazer/dashboards_controller.rb +99 -0
  51. data/app/controllers/blazer/queries_controller.rb +468 -0
  52. data/app/controllers/blazer/uploads_controller.rb +147 -0
  53. data/app/helpers/blazer/base_helper.rb +83 -0
  54. data/app/models/blazer/audit.rb +6 -0
  55. data/app/models/blazer/check.rb +104 -0
  56. data/app/models/blazer/connection.rb +5 -0
  57. data/app/models/blazer/dashboard.rb +17 -0
  58. data/app/models/blazer/dashboard_query.rb +9 -0
  59. data/app/models/blazer/query.rb +42 -0
  60. data/app/models/blazer/record.rb +5 -0
  61. data/app/models/blazer/upload.rb +11 -0
  62. data/app/models/blazer/uploads_connection.rb +7 -0
  63. data/app/views/blazer/_nav.html.erb +18 -0
  64. data/app/views/blazer/_variables.html.erb +127 -0
  65. data/app/views/blazer/check_mailer/failing_checks.html.erb +7 -0
  66. data/app/views/blazer/check_mailer/state_change.html.erb +48 -0
  67. data/app/views/blazer/checks/_form.html.erb +79 -0
  68. data/app/views/blazer/checks/edit.html.erb +3 -0
  69. data/app/views/blazer/checks/index.html.erb +72 -0
  70. data/app/views/blazer/checks/new.html.erb +3 -0
  71. data/app/views/blazer/dashboards/_form.html.erb +82 -0
  72. data/app/views/blazer/dashboards/edit.html.erb +3 -0
  73. data/app/views/blazer/dashboards/new.html.erb +3 -0
  74. data/app/views/blazer/dashboards/show.html.erb +53 -0
  75. data/app/views/blazer/queries/_caching.html.erb +16 -0
  76. data/app/views/blazer/queries/_cohorts.html.erb +48 -0
  77. data/app/views/blazer/queries/_form.html.erb +255 -0
  78. data/app/views/blazer/queries/docs.html.erb +147 -0
  79. data/app/views/blazer/queries/edit.html.erb +2 -0
  80. data/app/views/blazer/queries/home.html.erb +169 -0
  81. data/app/views/blazer/queries/new.html.erb +2 -0
  82. data/app/views/blazer/queries/run.html.erb +188 -0
  83. data/app/views/blazer/queries/schema.html.erb +55 -0
  84. data/app/views/blazer/queries/show.html.erb +72 -0
  85. data/app/views/blazer/uploads/_form.html.erb +27 -0
  86. data/app/views/blazer/uploads/edit.html.erb +3 -0
  87. data/app/views/blazer/uploads/index.html.erb +55 -0
  88. data/app/views/blazer/uploads/new.html.erb +3 -0
  89. data/app/views/layouts/blazer/application.html.erb +25 -0
  90. data/config/routes.rb +25 -0
  91. data/lib/blazer/adapters/athena_adapter.rb +182 -0
  92. data/lib/blazer/adapters/base_adapter.rb +76 -0
  93. data/lib/blazer/adapters/bigquery_adapter.rb +79 -0
  94. data/lib/blazer/adapters/cassandra_adapter.rb +70 -0
  95. data/lib/blazer/adapters/clickhouse_adapter.rb +84 -0
  96. data/lib/blazer/adapters/drill_adapter.rb +38 -0
  97. data/lib/blazer/adapters/druid_adapter.rb +102 -0
  98. data/lib/blazer/adapters/elasticsearch_adapter.rb +61 -0
  99. data/lib/blazer/adapters/hive_adapter.rb +55 -0
  100. data/lib/blazer/adapters/ignite_adapter.rb +64 -0
  101. data/lib/blazer/adapters/influxdb_adapter.rb +57 -0
  102. data/lib/blazer/adapters/neo4j_adapter.rb +62 -0
  103. data/lib/blazer/adapters/opensearch_adapter.rb +52 -0
  104. data/lib/blazer/adapters/presto_adapter.rb +54 -0
  105. data/lib/blazer/adapters/salesforce_adapter.rb +50 -0
  106. data/lib/blazer/adapters/snowflake_adapter.rb +82 -0
  107. data/lib/blazer/adapters/soda_adapter.rb +105 -0
  108. data/lib/blazer/adapters/spark_adapter.rb +14 -0
  109. data/lib/blazer/adapters/sql_adapter.rb +324 -0
  110. data/lib/blazer/adapters.rb +18 -0
  111. data/lib/blazer/annotations.rb +47 -0
  112. data/lib/blazer/anomaly_detectors.rb +22 -0
  113. data/lib/blazer/check_mailer.rb +27 -0
  114. data/lib/blazer/data_source.rb +270 -0
  115. data/lib/blazer/engine.rb +42 -0
  116. data/lib/blazer/forecasters.rb +7 -0
  117. data/lib/blazer/result.rb +178 -0
  118. data/lib/blazer/result_cache.rb +71 -0
  119. data/lib/blazer/run_statement.rb +44 -0
  120. data/lib/blazer/run_statement_job.rb +20 -0
  121. data/lib/blazer/slack_notifier.rb +94 -0
  122. data/lib/blazer/statement.rb +77 -0
  123. data/lib/blazer/version.rb +3 -0
  124. data/lib/blazer.rb +286 -0
  125. data/lib/finery.rb +3 -0
  126. data/lib/generators/blazer/install_generator.rb +22 -0
  127. data/lib/generators/blazer/templates/config.yml.tt +83 -0
  128. data/lib/generators/blazer/templates/install.rb.tt +47 -0
  129. data/lib/generators/blazer/templates/uploads.rb.tt +10 -0
  130. data/lib/generators/blazer/uploads_generator.rb +18 -0
  131. data/lib/tasks/blazer.rake +20 -0
  132. data/lib/tasks/finery.rake +20 -0
  133. data/licenses/LICENSE-ace.txt +24 -0
  134. data/licenses/LICENSE-bootstrap.txt +21 -0
  135. data/licenses/LICENSE-chart.js.txt +9 -0
  136. data/licenses/LICENSE-chartjs-adapter-date-fns.txt +9 -0
  137. data/licenses/LICENSE-chartkick.js.txt +22 -0
  138. data/licenses/LICENSE-date-fns.txt +21 -0
  139. data/licenses/LICENSE-daterangepicker.txt +21 -0
  140. data/licenses/LICENSE-fuzzysearch.txt +20 -0
  141. data/licenses/LICENSE-highlight.js.txt +29 -0
  142. data/licenses/LICENSE-jquery.txt +20 -0
  143. data/licenses/LICENSE-kurkle-color.txt +9 -0
  144. data/licenses/LICENSE-mapkick-bundle.txt +1029 -0
  145. data/licenses/LICENSE-moment-timezone.txt +20 -0
  146. data/licenses/LICENSE-moment.txt +22 -0
  147. data/licenses/LICENSE-rails-ujs.txt +20 -0
  148. data/licenses/LICENSE-selectize.txt +202 -0
  149. data/licenses/LICENSE-sortable.txt +21 -0
  150. data/licenses/LICENSE-stickytableheaders.txt +20 -0
  151. data/licenses/LICENSE-stupidtable.txt +19 -0
  152. data/licenses/LICENSE-vue.txt +21 -0
  153. metadata +250 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2e078ca59bdbb5792903b2a057557b43165d682a2c7a5e31980fc7b3f8db04a8
4
+ data.tar.gz: de20ac5f79093919a5241ca654368bfe40cebbee45d52b87626d05227a87a80f
5
+ SHA512:
6
+ metadata.gz: 9ff36e58770bcfcb9aad2e699c69ee92dc1f2fffa2c87ab880f693eff439d48c915c43f0eeb4dc5fa06dc6baaaed71118a9b8bd60ae5d2d2f37b562be4c1107d
7
+ data.tar.gz: aacececa615434984234722176cf89b11ded36cc8923d6235f754f7537ce9cb2bd6db09c36157a3173dd7ca1083fedd4744702df40de1a27d95f7fe4303db4c5
data/CHANGELOG.md ADDED
@@ -0,0 +1,426 @@
1
+ ## 3.0.0 (2023-09-20)
2
+
3
+ - Switched from Mapbox.js to Mapbox GL JS v1 for maps (this affects Mapbox billing)
4
+ - Support for AnomalyDetection.rb is no longer experimental
5
+ - Added support for maps from GeoJSON
6
+ - Added support for Trilogy
7
+ - Fixed `async` option
8
+ - Fixed run now button for cached queries
9
+ - Dropped support for Ruby < 3 and Rails < 6.1
10
+ - Dropped support for MongoDB (required < 4.2)
11
+ - Dropped support for R anomaly detection
12
+
13
+ ## 2.6.5 (2022-08-31)
14
+
15
+ - Use monotonic time
16
+ - Fixed `comparison of Symbol with String failed` error with certain versions of Rails
17
+
18
+ ## 2.6.4 (2022-05-24)
19
+
20
+ - Fixed error with caching
21
+
22
+ ## 2.6.3 (2022-05-11)
23
+
24
+ - Fixed error with canceling queries
25
+
26
+ ## 2.6.2 (2022-05-06)
27
+
28
+ - Fixed error with Postgres when prepared statements are disabled with Rails < 6.1
29
+
30
+ ## 2.6.1 (2022-04-21)
31
+
32
+ - Added `region` setting to Amazon Athena
33
+ - Fixed error with MySQL for Rails < 7
34
+ - Fixed error with binary data
35
+
36
+ ## 2.6.0 (2022-04-20)
37
+
38
+ - Fixed quoting issue with variables
39
+ - Custom adapters now need to specify how to quote variables in queries
40
+ - Added experimental support for Propshaft
41
+ - Fixed error with empty results with InfluxDB
42
+
43
+ ## 2.5.0 (2022-01-04)
44
+
45
+ - Added support for Slack OAuth tokens
46
+ - Added experimental support for AnomalyDetection.rb
47
+ - Improved table preview for MySQL
48
+ - Fixed cohort analysis for MySQL
49
+
50
+ ## 2.4.8 (2021-12-07)
51
+
52
+ - Added support for OpenSearch
53
+ - Removed `elasticsearch-xpack` dependency for Elasticsearch
54
+
55
+ ## 2.4.7 (2021-09-25)
56
+
57
+ - Made Action Mailer optional
58
+ - Fixed error with multiple maps on dashboard
59
+
60
+ ## 2.4.6 (2021-09-20)
61
+
62
+ - Added support for workgroup with Amazon Athena
63
+ - Added casting for timestamp with time zone columns with Amazon Athena
64
+ - Added support for setting credentials in config file with Amazon Athena
65
+ - Made output location optional with Amazon Athena
66
+ - Fixed casting error for `NULL` values with Amazon Athena
67
+ - Fixed issue with Google BigQuery only showing first page of results
68
+
69
+ ## 2.4.5 (2021-09-15)
70
+
71
+ - Improved fix for some forked queries not appearing on home page
72
+
73
+ ## 2.4.4 (2021-09-15)
74
+
75
+ - Fixed issue with some forked queries not appearing on home page
76
+
77
+ ## 2.4.3 (2021-07-27)
78
+
79
+ - Added Prophet anomaly detection
80
+ - Fixed style for new select items
81
+
82
+ ## 2.4.2 (2021-02-08)
83
+
84
+ - Added support for Apache Ignite
85
+
86
+ ## 2.4.1 (2021-01-25)
87
+
88
+ - Added cohorts for MySQL
89
+ - Added support for Apache Hive and Apache Spark
90
+ - Fixed deprecation warning with Active Record 6.1
91
+
92
+ ## 2.4.0 (2020-12-15)
93
+
94
+ - Added cohorts
95
+ - Fixed broken routes for some applications
96
+ - Forecasting and uploads are no longer experimental
97
+
98
+ ## 2.3.1 (2020-11-23)
99
+
100
+ - Improved column names for uploads
101
+
102
+ ## 2.3.0 (2020-11-16)
103
+
104
+ - Added support for archiving queries
105
+ - Added experimental support for uploads
106
+
107
+ ## 2.2.8 (2020-11-01)
108
+
109
+ - Fixed error when deleting dashboard
110
+
111
+ ## 2.2.7 (2020-09-07)
112
+
113
+ - Use `datetime` type in migration
114
+ - Fixed unpermitted parameters on dashboard page
115
+ - Fixed deprecation warnings in Ruby 2.7
116
+
117
+ ## 2.2.6 (2020-07-21)
118
+
119
+ - Added experimental support for InfluxDB
120
+ - Added support for forecasting week, month, quarter, and year with Prophet
121
+ - Fixed forecasting link not showing up
122
+
123
+ ## 2.2.5 (2020-06-03)
124
+
125
+ - Updated maps to fix deprecation error
126
+
127
+ ## 2.2.4 (2020-05-30)
128
+
129
+ - Fixed error with new queries
130
+
131
+ ## 2.2.3 (2020-05-30)
132
+
133
+ - Improved query parameter handling
134
+
135
+ ## 2.2.2 (2020-04-13)
136
+
137
+ - Added experimental support for the Socrata Open Data API (SODA)
138
+ - Added experimental Prophet forecasting
139
+ - Fixed query search for non-ASCII characters
140
+
141
+ ## 2.2.1 (2019-10-08)
142
+
143
+ - Added support for Sprockets 4
144
+ - Improved Snowflake table preview
145
+ - Fixed bug with refresh link not showing
146
+
147
+ ## 2.2.0 (2019-07-12)
148
+
149
+ - Added schema to table preview for Postgres and Redshift
150
+ - Fixed bug with Slack notifications not sending
151
+ - Dropped support for Rails 4.2
152
+
153
+ ## 2.1.0 (2019-06-04)
154
+
155
+ - Require latest Chartkick to prevent possible XSS - see [#245](https://github.com/ankane/blazer/issues/245)
156
+
157
+ ## 2.0.2 (2019-05-26)
158
+
159
+ - Added support for variable transformation for blind indexing
160
+ - Added experimental support for Neo4j
161
+ - Added experimental support for Salesforce
162
+ - Fixed JavaScript sorting for numbers with commas
163
+
164
+ ## 2.0.1 (2019-01-07)
165
+
166
+ - Added favicon
167
+ - Added search for checks and schema
168
+ - Added pie charts
169
+ - Added Trend anomaly detection
170
+ - Added forecasting
171
+ - Improved tooltips
172
+ - Improved docs for new installs
173
+ - Fixed error with canceling queries
174
+
175
+ ## 2.0.0 (2019-01-03)
176
+
177
+ - Added support for Slack
178
+ - Added `async` option
179
+ - Added `override_csp` option
180
+ - Added smart variables, linked columns smart columns, and charts to inline docs
181
+ - Use SQL for Elasticsearch
182
+ - Fixed error with latest `google-cloud-bigquery`
183
+
184
+ Breaking changes
185
+
186
+ - Dropped support for Rails < 4.2
187
+
188
+ ## 1.9.0 (2018-06-17)
189
+
190
+ - Prompt developers to check custom `before_action`
191
+ - Better ordering on home page
192
+ - Added support for Snowflake
193
+
194
+ ## 1.8.2 (2018-02-22)
195
+
196
+ - Added support for Cassandra
197
+ - Fixes for Druid
198
+ - Added support for Amazon Athena
199
+ - Added support for Druid
200
+ - Fixed query cancellation
201
+
202
+ There was no 1.8.1 release.
203
+
204
+ ## 1.8.0 (2017-05-01)
205
+
206
+ - Added support for Rails 5.1
207
+
208
+ ## 1.7.10 (2017-04-03)
209
+
210
+ - Added support for Google BigQuery
211
+ - Require `drill-sergeant` gem for Apache Drill
212
+ - Better handling of checks with variables
213
+
214
+ ## 1.7.9 (2017-03-20)
215
+
216
+ - Added beta support for Apache Drill
217
+ - Added email validation for checks
218
+ - Updated Chart.js to 2.5.0
219
+
220
+ ## 1.7.8 (2017-02-06)
221
+
222
+ - Added support for custom adapters
223
+ - Fixed bug with scatter charts on dashboards
224
+ - Fixed table preview for SQL Server
225
+ - Fixed issue when `default_url_options` set
226
+
227
+ ## 1.7.7 (2016-12-17)
228
+
229
+ - Fixed preview error for MySQL
230
+ - Fixed error with timeouts for MySQL
231
+
232
+ ## 1.7.6 (2016-12-13)
233
+
234
+ - Added scatter chart
235
+ - Fixed issue with false values showing up blank
236
+ - Fixed preview for table names with certain characters
237
+
238
+ ## 1.7.5 (2016-11-22)
239
+
240
+ - Fixed issue with check emails sometimes failing for default Rails 5 ActiveJob adapter
241
+ - Fixed sorting for new dashboards
242
+
243
+ ## 1.7.4 (2016-11-06)
244
+
245
+ - Removed extra dependencies added in 1.7.1
246
+ - Fixed `send_failing_checks` for default Rails 5 ActiveJob adapter
247
+
248
+ ## 1.7.3 (2016-11-01)
249
+
250
+ - Fixed JavaScript errors
251
+ - Fixed query cancel error
252
+ - Return search results for "me" or "mine"
253
+ - Include sample data in email when bad data checks fail
254
+ - Fixed deprecation warnings
255
+
256
+ ## 1.7.2 (2016-10-30)
257
+
258
+ - Cancel all queries on page nav
259
+ - Prevent Ace from taking over find command
260
+ - Added ability to use hashes for smart columns
261
+ - Added ability to inherit smart variables and columns from other data sources
262
+
263
+ ## 1.7.1 (2016-10-29)
264
+
265
+ - Do not fork when enter key pressed
266
+ - Use custom version of Chart.js to fix label overlap
267
+ - Improved performance of home page
268
+
269
+ ## 1.7.0 (2016-09-07)
270
+
271
+ - Added ability to cancel queries on backend for Postgres and Redshift
272
+ - Only run 3 queries at a time on dashboards
273
+ - Better anomaly detection
274
+ - Attempt to reconnect when connection issues
275
+ - Fixed issues with caching
276
+
277
+ ## 1.6.2 (2016-08-11)
278
+
279
+ - Added basic query permissions
280
+ - Added ability to use arrays and hashes for smart variables
281
+ - Added cancel button for queries
282
+ - Added `lat` and `lng` as map keys
283
+
284
+ ## 1.6.1 (2016-07-30)
285
+
286
+ - Added support for Presto [beta]
287
+ - Added support for Elasticsearch timeouts
288
+ - Fixed error in Rails 5
289
+
290
+ ## 1.6.0 (2016-07-28)
291
+
292
+ - Added support for MongoDB [beta]
293
+ - Added support for Elasticsearch [beta]
294
+ - Fixed deprecation warning in Rails 5
295
+
296
+ ## 1.5.1 (2016-07-24)
297
+
298
+ - Added anomaly detection for data less than 2 weeks
299
+ - Added autolinking urls
300
+ - Added support for images
301
+
302
+ ## 1.5.0 (2016-06-29)
303
+
304
+ - Added new bar chart format
305
+ - Added anomaly detection checks
306
+ - Added `async` option for polling
307
+
308
+ ## 1.4.0 (2016-06-09)
309
+
310
+ - Added `slow` cache mode
311
+ - Fixed `BLAZER_DATABASE_URL required` error
312
+ - Fixed issue with duplicate column names
313
+
314
+ ## 1.3.5 (2016-05-11)
315
+
316
+ - Fixed error with checks
317
+
318
+ ## 1.3.4 (2016-05-11)
319
+
320
+ - Fixed issue with missing queries
321
+
322
+ ## 1.3.3 (2016-05-08)
323
+
324
+ - Fixed error with Rails 4.1 and below
325
+
326
+ ## 1.3.2 (2016-05-07)
327
+
328
+ - Added support for Rails 5
329
+ - Attempt to reconnect for checks
330
+
331
+ ## 1.3.1 (2016-05-06)
332
+
333
+ - Fixed migration error
334
+
335
+ ## 1.3.0 (2016-05-06)
336
+
337
+ - Added schedule for checks
338
+ - Switched to Chart.js for charts
339
+ - Better output for explain
340
+ - Support for MySQL timeouts
341
+ - Raise error when timeout not supported
342
+ - Added creator to dashboards and checks
343
+
344
+ ## 1.2.1 (2016-04-26)
345
+
346
+ - Fixed checks
347
+
348
+ ## 1.2.0 (2016-03-22)
349
+
350
+ - Added non-editable queries
351
+ - Added variable defaults
352
+ - Added `local_time_suffix` setting
353
+ - Better timeout message
354
+ - Hide variables from commented out lines
355
+ - Fixed regex as variable names
356
+
357
+ ## 1.1.1 (2016-03-06)
358
+
359
+ - Added `before_action` option
360
+ - Added invert option for checks
361
+ - Added targets
362
+ - Friendlier error message for timeouts
363
+ - Fixed request URI too large
364
+ - Prevent accidental backspace nav on query page
365
+
366
+ ## 1.1.0 (2015-12-27)
367
+
368
+ - Replaced pie charts with column charts
369
+ - Fixed error with datepicker
370
+ - Added fork button to edit query page
371
+ - Added a notice when editing a query that is part of a dashboard
372
+ - Added refresh for dashboards
373
+
374
+ ## 1.0.4 (2015-11-04)
375
+
376
+ - Added recently viewed queries and dashboards to home page
377
+ - Fixed refresh when transform statement is used
378
+ - Fixed error when no user model
379
+
380
+ ## 1.0.3 (2015-10-18)
381
+
382
+ - Added maps
383
+ - Added support for Rails 4.0
384
+
385
+ ## 1.0.2 (2015-10-11)
386
+
387
+ - Fixed error when installing
388
+ - Added `schemas` option
389
+
390
+ ## 1.0.1 (2015-10-08)
391
+
392
+ - Added comments to queries
393
+ - Added `cache` option
394
+ - Added `user_method` option
395
+ - Added `use_transaction` option
396
+
397
+ ## 1.0.0 (2015-10-04)
398
+
399
+ - Added support for multiple data sources
400
+ - Added dashboards
401
+ - Added checks
402
+ - Added support for Redshift
403
+
404
+ ## 0.0.8 (2015-09-05)
405
+
406
+ - Easier to edit queries with variables
407
+ - Dynamically expand editor height as needed
408
+ - No need for spaces in search
409
+
410
+ ## 0.0.7 (2015-07-23)
411
+
412
+ - Fixed error when no `User` class
413
+ - Fixed forking a query with variables
414
+ - Set time zone after Rails initializes
415
+
416
+ ## 0.0.6 (2015-06-18)
417
+
418
+ - Added fork button
419
+ - Fixed trending
420
+ - Fixed time zones for date select
421
+
422
+ ## 0.0.5 (2015-01-31)
423
+
424
+ - Added support for Rails 4.2
425
+ - Fixed error with `mysql2` adapter
426
+ - Added `user_class` option
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,49 @@
1
+ # Contributing
2
+
3
+ First, thanks for wanting to contribute. You’re awesome! :heart:
4
+
5
+ ## Finery vs Blazer
6
+
7
+ We accept PRs at Finery, but we also track Blazer's merged PRs.
8
+
9
+ Be aware that some of the features are only available in Finery, so they
10
+ might not work for Blazer.
11
+
12
+ ## Help
13
+
14
+ We’re not able to provide support through GitHub Issues. If you’re looking for help with your code, try posting on [Stack Overflow](https://stackoverflow.com/).
15
+
16
+ All features should be documented. If you don’t see a feature in the docs, assume it doesn’t exist.
17
+
18
+ ## Bugs
19
+
20
+ Think you’ve discovered a bug?
21
+
22
+ 1. Search existing issues to see if it’s been reported.
23
+ 2. Try the `master` branch to make sure it hasn’t been fixed.
24
+
25
+ ```rb
26
+ gem "blazer", github: "ankane/blazer"
27
+ ```
28
+
29
+ If the above steps don’t help, create an issue. Include:
30
+
31
+ - Detailed steps to reproduce
32
+ - Complete backtraces for exceptions
33
+
34
+ ## New Features
35
+
36
+ If you’d like to discuss a new feature, create an issue and start the title with `[Idea]`.
37
+
38
+ ## Pull Requests
39
+
40
+ Fork the project and create a pull request. A few tips:
41
+
42
+ - Keep changes to a minimum. If you have multiple features or fixes, submit multiple pull requests.
43
+ - Follow the existing style. The code should read like it’s written by a single person.
44
+
45
+ Feel free to open an issue to get feedback on your idea before spending too much time on it.
46
+
47
+ ---
48
+
49
+ This contributing guide is released under [CCO](https://creativecommons.org/publicdomain/zero/1.0/) (public domain). Use it for your own project without attribution.
data/LICENSE.txt ADDED
@@ -0,0 +1,25 @@
1
+ Copyright for portions of project Blazer are held by Andrew Kane, 2014-2023
2
+ as part of project Blazer.
3
+
4
+ All other copyright for project Finery are held by Chris Hasinski, 2023.
5
+
6
+ MIT License
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining
9
+ a copy of this software and associated documentation files (the
10
+ "Software"), to deal in the Software without restriction, including
11
+ without limitation the rights to use, copy, modify, merge, publish,
12
+ distribute, sublicense, and/or sell copies of the Software, and to
13
+ permit persons to whom the Software is furnished to do so, subject to
14
+ the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be
17
+ included in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.