otr-activerecord 2.0.2 → 2.0.3
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 304d3cdd120ed69673c1d19b4be9fc6398929ba82c9fe3a8999815177a84ae98
|
4
|
+
data.tar.gz: 4ce504f5faa3ceb7ea4145dc4205e41a0ac3484409ef51253c278ce61ffb1f3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1327e816c901a33452b6f76a0ec362af3e9f7fd454dca9b522672acebe911b59e4f7ef2e20dbe566b4085c100bae9df392985ad7db0d5ace866d13392d942c8f
|
7
|
+
data.tar.gz: 64d38211a199cca1c93f5e1da576e69c17fbdda4333b6cf6e595027f851a478bf63b5c77ca6b9bf918c6da1418187fdebd2feec1e835a8e03179267bb6af4ae5
|
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
An easy way to use ActiveRecord "off the rails." Works with Grape, Sinatra, plain old Rack, or even in a boring little script!. The defaults are all very Railsy (`config/database.yml`, `db/seeds.rb`, `db/migrate`, etc.), but you can easily change them. (Formerly known as `grape-activerecord`.) Supports:
|
4
4
|
|
5
|
+
* ActiveRecord 7.0.0.alpha2 (new AR features, like encryption, not tested)
|
5
6
|
* ActiveRecord 6
|
6
7
|
* ActiveRecord 5
|
7
8
|
* ActiveRecord 4
|
@@ -7,6 +7,7 @@ module OTR
|
|
7
7
|
autoload :Compatibility4, 'otr-activerecord/compatibility_4'
|
8
8
|
autoload :Compatibility5, 'otr-activerecord/compatibility_5'
|
9
9
|
autoload :Compatibility6, 'otr-activerecord/compatibility_6'
|
10
|
+
autoload :Compatibility7, 'otr-activerecord/compatibility_7'
|
10
11
|
|
11
12
|
class << self
|
12
13
|
# Relative path to the "db" dir
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module OTR
|
2
|
+
module ActiveRecord
|
3
|
+
# Compatibility layer for ActiveRecord 7
|
4
|
+
class Compatibility7 < Compatibility6
|
5
|
+
def initialize
|
6
|
+
@major_version = 7
|
7
|
+
::ActiveRecord.default_timezone = :utc
|
8
|
+
::ActiveRecord::Base.logger = Logger.new(STDOUT)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -4,8 +4,10 @@ OTR::ActiveRecord.db_dir = 'db'
|
|
4
4
|
OTR::ActiveRecord.migrations_paths = %w(db/migrate)
|
5
5
|
OTR::ActiveRecord.fixtures_path = 'test/fixtures'
|
6
6
|
OTR::ActiveRecord.seed_file = 'seeds.rb'
|
7
|
-
OTR::ActiveRecord._normalizer =
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
7
|
+
OTR::ActiveRecord._normalizer =
|
8
|
+
case ::ActiveRecord::VERSION::MAJOR
|
9
|
+
when 4 then OTR::ActiveRecord::Compatibility4.new
|
10
|
+
when 5 then OTR::ActiveRecord::Compatibility5.new
|
11
|
+
when 6 then OTR::ActiveRecord::Compatibility6.new
|
12
|
+
when 7 then OTR::ActiveRecord::Compatibility7.new
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: otr-activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jordan Hollinger
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '4.0'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '7.1'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '4.0'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '7.1'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: hashie-forbidden_attributes
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,6 +58,7 @@ files:
|
|
58
58
|
- lib/otr-activerecord/compatibility_4.rb
|
59
59
|
- lib/otr-activerecord/compatibility_5.rb
|
60
60
|
- lib/otr-activerecord/compatibility_6.rb
|
61
|
+
- lib/otr-activerecord/compatibility_7.rb
|
61
62
|
- lib/otr-activerecord/defaults.rb
|
62
63
|
- lib/otr-activerecord/middleware/connection_management.rb
|
63
64
|
- lib/otr-activerecord/middleware/query_cache.rb
|
@@ -67,7 +68,7 @@ homepage: https://github.com/jhollinger/otr-activerecord
|
|
67
68
|
licenses:
|
68
69
|
- MIT
|
69
70
|
metadata: {}
|
70
|
-
post_install_message:
|
71
|
+
post_install_message:
|
71
72
|
rdoc_options: []
|
72
73
|
require_paths:
|
73
74
|
- lib
|
@@ -82,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
83
|
- !ruby/object:Gem::Version
|
83
84
|
version: '0'
|
84
85
|
requirements: []
|
85
|
-
rubygems_version: 3.
|
86
|
-
signing_key:
|
86
|
+
rubygems_version: 3.1.6
|
87
|
+
signing_key:
|
87
88
|
specification_version: 4
|
88
89
|
summary: 'Off The Rails: Use ActiveRecord with Grape, Sinatra, Rack, or anything else!'
|
89
90
|
test_files: []
|