rails_surrogate_key_logging 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea4b88c12da4f0ec6f5a7820dcfc828c86441c02ea4556a99b6d6ce9d6d2f36b
|
4
|
+
data.tar.gz: 86ab606742802c48b10f8a15f4cfee779871b2ef6fd76aab6b778f38a951368c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c1141c8d9b2df0fdd92db47211ed229e3f34afdbebfd9772a17ac6fcdbb6ef2df89c10e2f1a7065d2cef69c5ec7a606656c4fb4cc2782f951113097d7bc48eb
|
7
|
+
data.tar.gz: 3fac576dad21b8299f122eabea8c82cf3c35eec4fd299f9d0bfcab456ec6c56fc0719062b60a1466f1be7b1366ce4cf8590e2892c147055725de73cd2c61549c
|
data/config/database.yml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
<%=
|
2
|
+
YAML.load(
|
3
|
+
ERB.new(
|
4
|
+
File.read(
|
5
|
+
Rails.root.join('config', 'database.yml')
|
6
|
+
),
|
7
|
+
nil, nil, '__dummy_config_database_yml_erbout__'
|
8
|
+
).result(binding)
|
9
|
+
).inject({}) do |memo, conf|
|
10
|
+
k, v = conf
|
11
|
+
memo[k.sub(Regexp.new("^surrogate_key_logging_"),'')] = v if k.starts_with?("surrogate_key_logging_")
|
12
|
+
|
13
|
+
memo
|
14
|
+
end.to_yaml
|
15
|
+
%>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class CreateSurrogates < ActiveRecord::Migration[6.0]
|
2
|
+
def change
|
3
|
+
create_table :surrogates, id: false, options: 'ENGINE=InnoDB, CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci' do |t|
|
4
|
+
t.string :key, primary_key: true, null: false
|
5
|
+
t.text :value, limit: 4294967295, null: false
|
6
|
+
t.string :hashed_value, null: false
|
7
|
+
|
8
|
+
t.datetime :updated_at, null: false
|
9
|
+
end
|
10
|
+
add_index :surrogates, :key, unique: true
|
11
|
+
add_index :surrogates, :hashed_value, unique: true
|
12
|
+
end
|
13
|
+
end
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
'rubygems_mfa_required' => 'true',
|
22
22
|
}
|
23
23
|
|
24
|
-
s.files = Dir['app/**/*', 'lib/**/*', 'README.md', 'MIT-LICENSE', 'rails_surrogate_key_logging.gemspec']
|
24
|
+
s.files = Dir['app/**/*', 'lib/**/*', 'config/**/*', 'db/**/*', 'README.md', 'MIT-LICENSE', 'rails_surrogate_key_logging.gemspec']
|
25
25
|
|
26
26
|
s.require_paths = %w[ lib ]
|
27
27
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_surrogate_key_logging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Yelverton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -99,6 +99,8 @@ files:
|
|
99
99
|
- README.md
|
100
100
|
- app/models/surrogate_key_logging/application_record.rb
|
101
101
|
- app/models/surrogate_key_logging/surrogate.rb
|
102
|
+
- config/database.yml
|
103
|
+
- db/migrate/20230119211745_create_surrogates.rb
|
102
104
|
- lib/rails_surrogate_key_logging.rb
|
103
105
|
- lib/surrogate_key_logging.rb
|
104
106
|
- lib/surrogate_key_logging/action_controller.rb
|