jungle_path 0.0.27 → 0.0.28

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: d2143aac40db4617457d03f1389fb64281136317
4
- data.tar.gz: da3b81c00212c701339f773d0ed697e87ecde050
3
+ metadata.gz: da4efaa66965b4ed57c8294e48f17b507c5431a5
4
+ data.tar.gz: 60965f7f87ded49e0ceb6abd4634aa95ab555f05
5
5
  SHA512:
6
- metadata.gz: 1638bea56044e8d9578889287c29c43784e5e24455d2988ae6cee309659b63b424bc28973c1326427e4eed5d8181cbf63e82511241a7c39a778caf6c53c6fad6
7
- data.tar.gz: 0a05414dfd325d18728c054310666a4c5032d37b0288caec25428f25d04ad4fa269e995e1d61e27e1e90e4fde3a5815d744b197462bc5d7c44af94b059d6b3b8
6
+ metadata.gz: 16c14c29b222cc6a25dff3254710e548ced208e24f5ed71f33bd7e225b7f86fbbd2649b530930e39c5a20b320cbc46444e914d4e94ea571bdfeabde37e979106
7
+ data.tar.gz: 8b3c627aab33cde46cfd9fa1b53e9aa138d48b9bf664f353ab5f0e0e238b2f0b089ca18790656bd709fa5f2fc25155f2dff4ca3f32673a58ef0dde020a818dda
@@ -5,12 +5,11 @@ module JunglePath
5
5
  require 'jungle_path/db_access/import/insert'
6
6
  require 'jungle_path/db_access/import/schema'
7
7
  require 'jungle_path/db_access/import/select'
8
-
8
+
9
9
  class DBDir
10
10
  attr_reader :config
11
11
  attr_reader :path
12
12
  attr_reader :log_path
13
- attr_reader :postgresql
14
13
  attr_reader :select
15
14
  attr_reader :insert
16
15
  attr_reader :delete
@@ -19,9 +18,8 @@ module JunglePath
19
18
  def initialize(config, logger=nil)
20
19
  @logger = logger
21
20
  @config = config
22
- @path = config.path
23
- @log_path = config.log_path
24
- @postgresql = config.postgresql
21
+ @path = config.import_file_path
22
+ @log_path = config.import_log_path
25
23
  Dir.mkdir(path) unless Dir.exist?(path)
26
24
  clear_import_files
27
25
  @select = JunglePath::DBAccess::Import::Select.new @config, @logger
@@ -1,3 +1,3 @@
1
1
  module JunglePath
2
- VERSION = '0.0.27'
2
+ VERSION = '0.0.28'
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.27
4
+ version: 0.0.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael VanZant