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: 546c978081c2d91ee71701cf81cbb505e5c4225aa65d060e3239f033153f219c
4
- data.tar.gz: 3af59bef94b8a18163ee2f5f5e1d22788e0580eb27d2ff3c7234219666bf7862
3
+ metadata.gz: 13ce44164017411f13687e753c852338499998e6b59a12e8531e2989148d98a3
4
+ data.tar.gz: 22946e421179a73c33aa3e3b407db7eb42968d375bd3aa66ca5561ffe07b0fb5
5
5
  SHA512:
6
- metadata.gz: 55b2a030d004ac0688a575443efac7e2ac20205515a5c32012620d71e45db730ddfa417ccac665960dd27c570a195a0f75404a9aaf727df00e8c8f5ff7f89fe1
7
- data.tar.gz: 12d8dc5064323d5e6a4f8b348d51efc2d064b24f1e7140185bbe6996e4eea57a7f8b8822e9e0959d224fa918289cfe99d00b5772db6792bdcbd9a2360aaa7bb4
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.0)
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.1)
17
- activesupport (= 7.0.4.1)
18
- activerecord (7.0.4.1)
19
- activemodel (= 7.0.4.1)
20
- activesupport (= 7.0.4.1)
21
- activesupport (7.0.4.1)
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.0)
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.5)
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
@@ -14,4 +14,4 @@ task default: %i[spec rubocop]
14
14
  require "active_record"
15
15
  require_relative "./lib/kanal/plugins/active_record/tasks/migrate_task"
16
16
 
17
- Kanal::Plugins::ActiveRecord::Tasks::MigrateTask.new
17
+ Kanal::Plugins::ActiveRecord::Tasks::MigrateTask.new
@@ -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
- unless plugin.connected?
42
- puts "ActiveRecord is not connected to the database.
43
- Directive 🤖: You should execute this rake task with application or something that has
44
- this plugin added and initialized (via setup method). In other words: how could I execute migrations,
45
- if there is no connection to database? 😭"
46
- return
47
- end
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
 
@@ -3,7 +3,7 @@
3
3
  module Kanal
4
4
  module Plugins
5
5
  module ActiveRecord
6
- VERSION = "0.2.0"
6
+ VERSION = "0.2.1"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kanal-plugins-active_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - idchlife