File tree 5 files changed +165
-147
lines changed
5 files changed +165
-147
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.0.2 (2023-11-28)
2
+
3
+ - Updated Blazer to 3.0.2
4
+
5
+ ## 3.0.1 (2023-10-08)
6
+
7
+ - Updated Blazer to 3.0.1
8
+
9
+ ## 3.0.0 (2023-09-20)
10
+
11
+ - Updated Blazer to 3.0.0
12
+ - Added experimental support for ` linux/arm64 `
13
+
1
14
## 2.6.5 (2022-08-31)
2
15
3
16
- Updated Blazer to 2.6.5
Original file line number Diff line number Diff line change 1
- FROM ruby:3.0.6 -alpine3.16
1
+ FROM ruby:3.2.4 -alpine3.20
2
2
3
3
MAINTAINER Andrew Kane <
[email protected] >
4
4
@@ -13,12 +13,12 @@ WORKDIR $INSTALL_PATH
13
13
14
14
COPY . .
15
15
16
- RUN apk add --update build-base git libpq-dev mariadb-dev sqlite-dev libpq mariadb-connector-c sqlite-libs unixodbc && \
16
+ RUN apk add --update build-base gcompat git libpq-dev mariadb-dev libpq mariadb-connector-c unixodbc && \
17
17
gem install bundler && \
18
18
bundle install && \
19
19
bundle binstubs --all && \
20
20
bundle exec rake assets:precompile && \
21
- apk del build-base git libpq-dev mariadb-dev sqlite-dev && \
21
+ apk del build-base git libpq-dev mariadb-dev && \
22
22
rm -rf /var/cache/apk/*
23
23
24
24
ENV PORT 8080
Original file line number Diff line number Diff line change 1
1
source "https://rubygems.org"
2
2
3
- gem "rails" , "~> 6.1.0"
4
- gem "blazer" , "2.6.5"
3
+ gem "rails" , "~> 7.0.0"
4
+ gem "sprockets-rails"
5
+ gem "blazer" , "3.0.2"
5
6
gem "puma"
6
7
gem "tzinfo-data"
7
8
8
9
# data sources
9
- gem "activerecord6-redshift-adapter"
10
+ # gem "activerecord6-redshift-adapter"
10
11
gem "aws-sdk-athena"
11
12
gem "aws-sdk-glue"
12
13
gem "drill-sergeant"
@@ -25,11 +26,14 @@ gem "pg"
25
26
gem "presto-client"
26
27
gem "restforce"
27
28
# gem "odbc_adapter" # TODO add snowflake driver
28
- gem "sqlite3"
29
+ # gem "sqlite3"
29
30
# gem "tiny_tds"
30
31
# gem "activerecord-sqlserver-adapter"
31
32
32
33
# anomaly detection and forecasting
33
34
gem "anomaly_detection"
34
35
gem "prophet-rb"
35
36
gem "trend"
37
+
38
+ # TODO remove when updating Ruby
39
+ gem "uri" , ">= 0.12.2"
You can’t perform that action at this time.
0 commit comments