otr-activerecord 2.0.1 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/otr-activerecord/activerecord.rb +30 -11
- data/lib/otr-activerecord/compatibility_4.rb +0 -1
- data/lib/otr-activerecord/compatibility_5.rb +0 -1
- data/lib/otr-activerecord/compatibility_6.rb +1 -2
- data/lib/otr-activerecord/compatibility_7.rb +11 -0
- data/lib/otr-activerecord/defaults.rb +7 -5
- data/lib/otr-activerecord/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5fb7d9741794ab39e2b6299431eea662dbb04990bc914d473c24f06a7f14473
|
4
|
+
data.tar.gz: aa581f0798203212de9646c84cdbfc4f166edbb77e2cb44dc70093739c0686ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 110b90321b69aaafb9bd1198801bf546ce9635a7ebb83d9a7b383c9b357a8c86277110ccf0195923c375b25daf054e58275a9abb4a17d0e760dac1995015724f
|
7
|
+
data.tar.gz: a5b05b93b9205974f911cab1023330fd7b05603e46c033a171f5aaf3e7adc124327c401e699ed2daa535e815d21ab6c938c34d87140a5357f77d594bbd2d0173
|
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
|
@@ -57,18 +58,16 @@ module OTR
|
|
57
58
|
# Connect to database with a yml file. Example: "config/database.yml"
|
58
59
|
def self.configure_from_file!(path)
|
59
60
|
raise "#{path} does not exist!" unless File.file? path
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
if config.
|
64
|
-
|
65
|
-
|
66
|
-
config
|
67
|
-
a[dbname.to_sym] = {"migrations_paths" => ::OTR::ActiveRecord.migrations_paths}.merge subconfig
|
68
|
-
end
|
61
|
+
result = load_yaml(path)
|
62
|
+
::ActiveRecord::Base.configurations = begin
|
63
|
+
result.each do |_env, config|
|
64
|
+
if config.all? { |_, v| v.is_a?(Hash) }
|
65
|
+
config.each { |_, v| append_migration_path(v) }
|
66
|
+
else
|
67
|
+
append_migration_path(config)
|
69
68
|
end
|
70
|
-
|
71
|
-
|
69
|
+
end
|
70
|
+
end
|
72
71
|
end
|
73
72
|
|
74
73
|
# Establish a connection to the given db (defaults to current rack env)
|
@@ -76,9 +75,29 @@ module OTR
|
|
76
75
|
::ActiveRecord::Base.establish_connection(db)
|
77
76
|
end
|
78
77
|
|
78
|
+
def self.append_migration_path(config)
|
79
|
+
config['migrations_paths'] = ::OTR::ActiveRecord.migrations_paths unless config.key?('migrations_paths')
|
80
|
+
config
|
81
|
+
end
|
82
|
+
|
79
83
|
# The current Rack environment
|
80
84
|
def self.rack_env
|
81
85
|
(ENV['RACK_ENV'] || ENV['RAILS_ENV'] || ENV['APP_ENV'] || ENV['OTR_ENV'] || 'development').to_sym
|
82
86
|
end
|
87
|
+
|
88
|
+
# Support old Psych versions
|
89
|
+
def self.load_yaml(path)
|
90
|
+
erb_result = ERB.new(File.read(path)).result
|
91
|
+
|
92
|
+
result = if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
|
93
|
+
YAML.safe_load(erb_result, aliases: true)
|
94
|
+
else
|
95
|
+
YAML.safe_load(erb_result, [], [], true)
|
96
|
+
end
|
97
|
+
|
98
|
+
result || {}
|
99
|
+
end
|
100
|
+
|
101
|
+
private_class_method :load_yaml
|
83
102
|
end
|
84
103
|
end
|
@@ -8,7 +8,6 @@ module OTR
|
|
8
8
|
def initialize
|
9
9
|
@major_version = 6
|
10
10
|
::ActiveRecord::Base.default_timezone = :utc
|
11
|
-
::ActiveRecord::Base.logger = Logger.new(STDOUT)
|
12
11
|
end
|
13
12
|
|
14
13
|
# All db migration dir paths
|
@@ -23,7 +22,7 @@ module OTR
|
|
23
22
|
|
24
23
|
# Basename of migration classes
|
25
24
|
def migration_base_class_name
|
26
|
-
version = "
|
25
|
+
version = "#{@major_version}.#{::ActiveRecord::VERSION::MINOR}"
|
27
26
|
"ActiveRecord::Migration[#{version}]"
|
28
27
|
end
|
29
28
|
|
@@ -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.1.0
|
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:
|
11
|
+
date: 2022-01-30 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: []
|