jungle_path 0.0.21 → 0.0.22

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
  SHA1:
3
- metadata.gz: ee019b41cad42e01516a1c7310395b79037870ab
4
- data.tar.gz: 86e255015d0974065a4b9e635389b04f4e4e4b34
3
+ metadata.gz: 387ce7190818b5979947302463270a3fa232bf38
4
+ data.tar.gz: f83349a2d06fbd6232bdf1a3e12250c36ad06f96
5
5
  SHA512:
6
- metadata.gz: b99ff226ab3a0e4046375e4993048d3ca6f6f371bb6cf639d862e77f3347adf998b0a9d44507ce80123372e0b9f7943f2823a7ba4ceaaf6e4f91c9620d003aa2
7
- data.tar.gz: d7fa508186b220b18a387871f485c9f97fe0202117bd259d201e1a35c15a10523f963ff8df5d7b61417453b56676f9cca561e89b05489a215f8a88dd282b428c
6
+ metadata.gz: a3dcc4bb0ee6d2f48fa02c99575ecb0bea37f3c6d116c3a2f416f18fefa0eaa663b3c5945460e663feee7e63c676a785ff40a7283cc9e24b3cc630766eb8b3c1
7
+ data.tar.gz: 387eda727b0bbd860e02b0dc8be6901c01ce6c15604400e4622c41a465bd11898ef3a3044c435152f619ca31e3d8fc2092746575f2c73a6ec33b97e8aff0c314
@@ -1,6 +1,6 @@
1
1
  require 'logger'
2
2
  require 'sequel'
3
- require 'jungle_path/gen/db'
3
+ require 'jungle_path/db_access/meta/db'
4
4
 
5
5
  module Migration
6
6
  def self.run schema_module, db, version=nil
@@ -15,7 +15,7 @@ module Migration
15
15
  puts "Migrating database to version: #{display_version} on #{db.config.host}.#{db.config.name}:#{db.config.port}."
16
16
  puts "Using migration files at: #{path}"
17
17
 
18
- if JunglePath::Gen::DB.exists? db.config # todo: fix for sql server!
18
+ if JunglePath::DBAccess::Meta::DB.exists? db.config # todo: fix for sql server!
19
19
  # migrate to current or passed version.
20
20
  if version
21
21
  Sequel::Migrator.run(db.base, path, target: version)
@@ -1,3 +1,3 @@
1
1
  module JunglePath
2
- VERSION = '0.0.21'
2
+ VERSION = '0.0.22'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jungle_path
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.21
4
+ version: 0.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael VanZant