thecore 1.6.7 → 1.6.8
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: 468762631531e82c0e9a9a69ccac754a305af82d130d6e89897b6d44aca02790
|
4
|
+
data.tar.gz: b6b4f6ebc64e9a2e190c1bc215ab1d3ebc7b5bf1770190018cb2ed3c24fedb23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19ad1860d740424fb6f47b342cbec99af5460d601cb82b18065532ff4be2b03c6c07e0e9c77feef2f8d419c15a983dcad44a872e7a628cca1a6ec683243e436d
|
7
|
+
data.tar.gz: cb0bb4d40e8e4173814c17669f4ea8805dbdbc522faba94dacae9e29a4f8cf8dd30cb6ad3b97ee8be040fe23193786260cf233ad8948d3d3434cc26ff76fc17c
|
@@ -32,7 +32,7 @@ module Thecore
|
|
32
32
|
inject_into_file @plugin_lib_file, after: "class Engine < ::Rails::Engine\n" do
|
33
33
|
"
|
34
34
|
initializer '#{@name}.add_to_migrations' do |app|
|
35
|
-
unless app.root.to_s
|
35
|
+
unless app.root.to_s.match root.to_s
|
36
36
|
# APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
|
37
37
|
config.paths['db/migrate'].expanded.each do |expanded_path|
|
38
38
|
app.config.paths['db/migrate'] << expanded_path
|
data/lib/thecore/engine.rb
CHANGED
@@ -24,7 +24,7 @@ module Thecore
|
|
24
24
|
|
25
25
|
# appending migrations to the main app's ones
|
26
26
|
initializer "thecore.add_to_migrations" do |app|
|
27
|
-
unless app.root.to_s
|
27
|
+
unless app.root.to_s.match root.to_s
|
28
28
|
# APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
|
29
29
|
config.paths["db/migrate"].expanded.each do |expanded_path|
|
30
30
|
app.config.paths["db/migrate"] << expanded_path
|
data/lib/thecore/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|