data_collector 0.49.0 → 0.51.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 011fa724e8bde117ae8aad07787bb02360ea1aedd74e5421542f6d0aed716aa3
4
- data.tar.gz: 0f0a903e89342f0327268964eeb82c83ff73fb3d2f520a583e1b79b230e678b5
3
+ metadata.gz: c14c5e51a7f7eb0afc8b3c9e8580dd6f76324f08ee1fd06c73e58df68e368bd7
4
+ data.tar.gz: f2c856272c5feea8a432055b8d4c3220bddadde7fe66d1d0602e408f7686f082
5
5
  SHA512:
6
- metadata.gz: 850c951d0e6fbcf4c5ce01fe4c14b04d05b7ce54ff07afc3257dcdde69df99aa588009be3add9c3f7c360129087efb5c20c5f1674841bc1a3ce0c9a0f43893f9
7
- data.tar.gz: d0dc81a5346decda9094d78aaf568b9f8a5606b7d056f43f28c3dffeb567a039644e4e20e64be365c19494b41ed1c47e51976be7488873dacb6814c005b41189
6
+ metadata.gz: 2d8324edc28e85ddb5641da200d584b4d4a59d5ac7a8686fe297ca52ef326eccba9d183b3971f27070dd5779bac9a371999336f0b8f20d36b237fa3ced7feaaa
7
+ data.tar.gz: 462d507afd995e24b98fdd98c2aecd1325d60eb61d582c34b0b6590cdd181bab6d499cae15cb1895d1fb2863ebc4fc60328907ff6b83a10e9bc8d2ba77dad1f0
@@ -29,8 +29,8 @@ module DataCollector
29
29
  absolute_path = File.absolute_path("#{@uri.host}#{@uri.path}")
30
30
  raise DataCollector::Error, "#{@uri.to_s} not found" unless File.exist?(absolute_path)
31
31
 
32
- @listener ||= Listen.to(absolute_path, @options) do |modified, added, _|
33
- files = added | modified
32
+ @listener ||= Listen.to(absolute_path, @options) do |modified, added, removed|
33
+ files = added | modified | removed
34
34
  files.each do |filename|
35
35
  handle_on_message(@input, @output, filename)
36
36
  end
@@ -5,11 +5,12 @@ require 'date'
5
5
  require 'minitar'
6
6
  require 'zlib'
7
7
  require 'cgi'
8
- require 'active_support/core_ext/hash'
8
+ require 'active_support/all'
9
+ #require 'active_support/core_ext/hash'
9
10
  # Volgende is deprecated vanaf 7.1
10
11
  #require 'active_support/core_ext/array'
11
- require "active_support/isolated_execution_state"
12
- require 'active_support/xml_mini'
12
+ #require "active_support/isolated_execution_state"
13
+ #require 'active_support/xml_mini'
13
14
  require 'fileutils'
14
15
 
15
16
  require_relative './output/rpc'
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module DataCollector
3
- VERSION = "0.49.0"
3
+ VERSION = "0.51.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: data_collector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mehmet Celik
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-26 00:00:00.000000000 Z
11
+ date: 2024-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport