fde-file_crawler 0.2.0 → 0.2.1

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: 8fc9e045915b14e58b88665d5707d886ff40dbe1
4
- data.tar.gz: 5b71b93e7e4092e69755fc296b97c9f36d05abcc
3
+ metadata.gz: 78a844517927d32ed56430193409a66541f69c43
4
+ data.tar.gz: 465ac7224f5d2666e8238d65ad1d0c4ea2c78e01
5
5
  SHA512:
6
- metadata.gz: ffe478d4c341a2029d3a97dfd82fe421cb7db58376c7a53d0c6f2d3fb394fa0bba79b806844f26188e08896ccc6d018739773fd840124bd765aeec1f0c2738fc
7
- data.tar.gz: 36ec7f419e322b8a6ce745f5841bfc10d19cd2c2da7f4e8e659760ab0148aab2acfa9d908e76a6c733c84a80c8941112562c7c8827eb3acb3da86b2d9ad9243b
6
+ metadata.gz: dbc36ae845dc6cdc878e219170af9a22e3e990932890ae54de2920eb3ac6d03074268e4ca9967a530d52f2e6884c45cd6e98b9e052c1098fbab6767db6707acf
7
+ data.tar.gz: 4309522a0dae6b0d059b12594d258490eb868e0aba4967dcc9f50a1e46e5f8e85de0fc57f5452a4c4982bd255a6bf8fa694a79699ee2c248ed8a05e72afa6f35
data/.gitignore CHANGED
@@ -11,4 +11,4 @@
11
11
  # rspec failure tracking
12
12
  .rspec_status
13
13
 
14
- .gem
14
+ *.gem
data/.test.env ADDED
File without changes
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency "bundler", "~> 1.15"
33
33
  spec.add_development_dependency "rake", "~> 10.0"
34
34
  spec.add_development_dependency "rspec", "~> 3.0"
35
- spec.add_development_dependency "pry"
36
- spec.add_development_dependency "pry-remote"
37
- spec.add_development_dependency "pry-nav"
35
+ spec.add_development_dependency "pry", "~> 0.10"
36
+ spec.add_development_dependency "pry-remote", "~> 0.1"
37
+ spec.add_development_dependency "pry-nav", "~> 0.2"
38
38
  end
@@ -1,5 +1,5 @@
1
1
  module FDE
2
2
  module FileCrawler
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fde-file_crawler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Langenegger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-11 00:00:00.000000000 Z
11
+ date: 2017-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,44 +56,44 @@ dependencies:
56
56
  name: pry
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: '0.10'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">="
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
68
+ version: '0.10'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: pry-remote
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ">="
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: '0.1'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: '0.1'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: pry-nav
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '0'
89
+ version: '0.2'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '0'
96
+ version: '0.2'
97
97
  description: This file crawler helps to decect if there are new files in a directory.
98
98
  email:
99
99
  - f.langenegger@fadendaten.ch
@@ -103,19 +103,17 @@ extra_rdoc_files: []
103
103
  files:
104
104
  - ".gitignore"
105
105
  - ".rspec"
106
+ - ".test.env"
106
107
  - ".travis.yml"
107
108
  - Gemfile
108
109
  - LICENSE
109
- - LICENSE.txt
110
110
  - README.md
111
111
  - Rakefile
112
112
  - bin/console
113
113
  - bin/setup
114
- - fde-file_crawler-0.1.1.gem
115
- - file_crawler.gemspec
114
+ - fde-file_crawler.gemspec
116
115
  - lib/file_crawler.rb
117
116
  - lib/file_crawler/version.rb
118
- - text2.txt
119
117
  homepage: https://github.com/fashion-data-exchange/file_crawler
120
118
  licenses:
121
119
  - MIT
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2017 Felix Langenegger
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
Binary file
data/text2.txt DELETED
@@ -1 +0,0 @@
1
- Text