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: 7b5036c6479c5b7da550f42b14359225fba827614022b17b19642b15ff021f11
4
- data.tar.gz: c109e1fc7a384ea446ff669898bfd7bf6739351bbff0f1cc7f9045ad20add3a7
3
+ metadata.gz: 468762631531e82c0e9a9a69ccac754a305af82d130d6e89897b6d44aca02790
4
+ data.tar.gz: b6b4f6ebc64e9a2e190c1bc215ab1d3ebc7b5bf1770190018cb2ed3c24fedb23
5
5
  SHA512:
6
- metadata.gz: 958cd6cc23df4ea341e2e334e83bc743473edd8faaed06433bb0b46b26d5a2180f47f55dd515c03e2c9872ae94c4ab9c0762ceb5a15eb1ca31fd85340e24347c
7
- data.tar.gz: 1a22e88e4edf998f1e1cbd6f1fcde763ab3239e43f0e314051e9081613b1a51d82771a9889b59aa9c5687fee66d66941c9d4aae295eb44be637f45b1bd4c6a30
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 == 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
@@ -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 == 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
@@ -1,3 +1,3 @@
1
1
  module Thecore
2
- VERSION = '1.6.7'.freeze
2
+ VERSION = '1.6.8'.freeze
3
3
  end
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.7
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-03-18 00:00:00.000000000 Z
11
+ date: 2019-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails