We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9eba38 commit b257683Copy full SHA for b257683
3 files changed
.github/workflows/build.yml
@@ -6,6 +6,8 @@ jobs:
6
fail-fast: false
7
matrix:
8
include:
9
+ - ruby: 3.4
10
+ gemfile: gemfiles/activerecord81.gemfile
11
- ruby: 3.4
12
gemfile: Gemfile
13
- ruby: 3.3
gemfiles/activerecord81.gemfile
@@ -0,0 +1,11 @@
1
+source "https://rubygems.org"
2
+
3
+gemspec path: ".."
4
5
+gem "rake"
+gem "minitest"
+gem "activerecord", "~> 8.1.0.beta1"
+gem "pg"
+gem "mysql2"
+gem "trilogy"
+gem "sqlite3"
test/test_helper.rb
@@ -36,7 +36,7 @@
36
formats: {special: "%b %e, %Y"}
37
}
38
39
-if ActiveSupport::VERSION::STRING.to_f == 8.0
+if ActiveSupport::VERSION::STRING.to_f >= 8.0
40
ActiveSupport.to_time_preserves_timezone = :zone
41
elsif ActiveSupport::VERSION::STRING.to_f == 7.2
42
ActiveSupport.to_time_preserves_timezone = true
0 commit comments