kanal-plugins-active_record 0.2.0 → 0.2.1
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: 13ce44164017411f13687e753c852338499998e6b59a12e8531e2989148d98a3
|
4
|
+
data.tar.gz: 22946e421179a73c33aa3e3b407db7eb42968d375bd3aa66ca5561ffe07b0fb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df08855d584ff5351a5e7e3c41aa1c53696ff3ede4c0d95085d9ee2f34d315e864d8c879879d3623492331544c2902da37b81ca5627ef5cd11fa0dbd66045cdc
|
7
|
+
data.tar.gz: de2ce6342d78747a4c50fbd4bc03994505b0517dacd1317cbe726c50401fcf3a2c3c1e93d692586779190f8fafd5849fe7a7ddc718cbc4ac42b286ecfdb23daf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.2.1] - 2023-01-29
|
4
|
+
- Fixed error about database not connected in the rake task for migrations. Connection was always NOT established, because how active record .establish_connection works. It is actually just adding connection to the pool, but not making any real connections.
|
3
5
|
## [0.1.0] - 2022-11-27
|
4
6
|
|
5
7
|
- Initial release
|
data/Gemfile.lock
CHANGED
@@ -1,24 +1,18 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git@github.com:idchlife/kanal.git
|
3
|
-
revision: 5dbc20a3480337192d1193b0e569dba9d665d4c9
|
4
|
-
specs:
|
5
|
-
kanal (0.3.0)
|
6
|
-
|
7
1
|
PATH
|
8
2
|
remote: .
|
9
3
|
specs:
|
10
|
-
kanal-plugins-active_record (0.2.
|
4
|
+
kanal-plugins-active_record (0.2.1)
|
11
5
|
activerecord
|
12
6
|
|
13
7
|
GEM
|
14
8
|
remote: https://rubygems.org/
|
15
9
|
specs:
|
16
|
-
activemodel (7.0.4.
|
17
|
-
activesupport (= 7.0.4.
|
18
|
-
activerecord (7.0.4.
|
19
|
-
activemodel (= 7.0.4.
|
20
|
-
activesupport (= 7.0.4.
|
21
|
-
activesupport (7.0.4.
|
10
|
+
activemodel (7.0.4.2)
|
11
|
+
activesupport (= 7.0.4.2)
|
12
|
+
activerecord (7.0.4.2)
|
13
|
+
activemodel (= 7.0.4.2)
|
14
|
+
activesupport (= 7.0.4.2)
|
15
|
+
activesupport (7.0.4.2)
|
22
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
23
17
|
i18n (>= 1.6, < 2)
|
24
18
|
minitest (>= 5.1)
|
@@ -34,6 +28,7 @@ GEM
|
|
34
28
|
concurrent-ruby (~> 1.0)
|
35
29
|
jaro_winkler (1.5.4)
|
36
30
|
json (2.6.3)
|
31
|
+
kanal (0.3.0)
|
37
32
|
kramdown (2.4.0)
|
38
33
|
rexml
|
39
34
|
kramdown-parser-gfm (1.1.0)
|
@@ -64,7 +59,7 @@ GEM
|
|
64
59
|
diff-lcs (>= 1.2.0, < 2.0)
|
65
60
|
rspec-support (~> 3.12.0)
|
66
61
|
rspec-support (3.12.0)
|
67
|
-
rubocop (1.44.
|
62
|
+
rubocop (1.44.1)
|
68
63
|
json (~> 2.3)
|
69
64
|
parallel (~> 1.10)
|
70
65
|
parser (>= 3.2.0.0)
|
@@ -103,7 +98,7 @@ GEM
|
|
103
98
|
sqlite3 (1.6.0-x86_64-darwin)
|
104
99
|
thor (1.2.1)
|
105
100
|
tilt (2.0.11)
|
106
|
-
tzinfo (2.0.
|
101
|
+
tzinfo (2.0.6)
|
107
102
|
concurrent-ruby (~> 1.0)
|
108
103
|
unicode-display_width (2.4.2)
|
109
104
|
webrick (1.7.0)
|
@@ -114,7 +109,7 @@ PLATFORMS
|
|
114
109
|
x86_64-darwin-21
|
115
110
|
|
116
111
|
DEPENDENCIES
|
117
|
-
kanal
|
112
|
+
kanal
|
118
113
|
kanal-plugins-active_record!
|
119
114
|
rake (~> 13.0)
|
120
115
|
rspec (~> 3.0)
|
data/Rakefile
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
require "active_record"
|
4
4
|
require "active_record/schema"
|
5
5
|
require "kanal/core/plugins/plugin"
|
6
|
+
require_relative "./tasks/migrate_task"
|
6
7
|
# require_relative "./overriden/version_suffix_migration_context"
|
7
8
|
|
8
9
|
module Kanal
|
@@ -77,6 +78,10 @@ module Kanal
|
|
77
78
|
self.class.migrate
|
78
79
|
end
|
79
80
|
|
81
|
+
def rake_tasks
|
82
|
+
[Kanal::Plugins::ActiveRecord::Tasks::MigrateTask.new]
|
83
|
+
end
|
84
|
+
|
80
85
|
#
|
81
86
|
# Check if ActiveRecord connected
|
82
87
|
#
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "rake"
|
4
|
+
require "rake/tasklib"
|
4
5
|
require "optparse"
|
5
6
|
|
6
7
|
require_relative "../active_record_plugin"
|
@@ -37,14 +38,21 @@ module Kanal
|
|
37
38
|
|
38
39
|
def execute_migration_task(yes = false)
|
39
40
|
plugin = Kanal::Plugins::ActiveRecord::ActiveRecordPlugin
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
41
|
+
|
42
|
+
# The problem with this is connection is not REALLY (look NOTE below) established only
|
43
|
+
# thanks to ::ActiveRecord::Base.establish_connection
|
44
|
+
# Migrations can proceed and be executed without checking for connection
|
45
|
+
# NOTE: we can look here
|
46
|
+
# https://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/ConnectionHandler.html#method-i-establish_connection
|
47
|
+
# and learn that there seems no real connection happening. At least, I assume so
|
48
|
+
|
49
|
+
# unless plugin.connected?
|
50
|
+
# puts "ActiveRecord is not connected to the database.
|
51
|
+
# Directive 🤖: You should execute this rake task with application or something that has
|
52
|
+
# this plugin added and initialized (via setup method). In other words: how could I execute migrations,
|
53
|
+
# if there is no connection to database? 😭"
|
54
|
+
# return
|
55
|
+
# end
|
48
56
|
|
49
57
|
migration_dirs = plugin.migration_directories
|
50
58
|
|