sys-filesystem 1.4.3 → 1.5.5
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGES.md +44 -0
- data/README.md +8 -5
- data/Rakefile +22 -1
- data/lib/sys/filesystem.rb +17 -16
- data/lib/sys/unix/sys/filesystem/constants.rb +4 -0
- data/lib/sys/unix/sys/filesystem/functions.rb +20 -24
- data/lib/sys/unix/sys/filesystem/structs.rb +143 -94
- data/lib/sys/unix/sys/filesystem.rb +66 -54
- data/lib/sys/windows/sys/filesystem/functions.rb +1 -0
- data/lib/sys/windows/sys/filesystem/helper.rb +3 -0
- data/lib/sys/windows/sys/filesystem.rb +25 -23
- data/lib/sys-filesystem.rb +2 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/sys_filesystem_shared.rb +14 -0
- data/spec/sys_filesystem_unix_spec.rb +481 -136
- data/spec/sys_filesystem_windows_spec.rb +264 -152
- data/sys-filesystem.gemspec +17 -8
- data.tar.gz.sig +0 -0
- metadata +37 -8
- metadata.gz.sig +0 -0
metadata
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sys-filesystem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel J. Berger
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain:
|
|
11
10
|
- |
|
|
@@ -35,7 +34,7 @@ cert_chain:
|
|
|
35
34
|
ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
|
|
36
35
|
WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
|
|
37
36
|
-----END CERTIFICATE-----
|
|
38
|
-
date:
|
|
37
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
39
38
|
dependencies:
|
|
40
39
|
- !ruby/object:Gem::Dependency
|
|
41
40
|
name: ffi
|
|
@@ -57,14 +56,14 @@ dependencies:
|
|
|
57
56
|
requirements:
|
|
58
57
|
- - "~>"
|
|
59
58
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '0.
|
|
59
|
+
version: '0.7'
|
|
61
60
|
type: :development
|
|
62
61
|
prerelease: false
|
|
63
62
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
63
|
requirements:
|
|
65
64
|
- - "~>"
|
|
66
65
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '0.
|
|
66
|
+
version: '0.7'
|
|
68
67
|
- !ruby/object:Gem::Dependency
|
|
69
68
|
name: rake
|
|
70
69
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -93,6 +92,34 @@ dependencies:
|
|
|
93
92
|
- - "~>"
|
|
94
93
|
- !ruby/object:Gem::Version
|
|
95
94
|
version: '3.9'
|
|
95
|
+
- !ruby/object:Gem::Dependency
|
|
96
|
+
name: rubocop
|
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
|
98
|
+
requirements:
|
|
99
|
+
- - ">="
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: '0'
|
|
102
|
+
type: :development
|
|
103
|
+
prerelease: false
|
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
requirements:
|
|
106
|
+
- - ">="
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '0'
|
|
109
|
+
- !ruby/object:Gem::Dependency
|
|
110
|
+
name: rubocop-rspec
|
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
|
112
|
+
requirements:
|
|
113
|
+
- - ">="
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '0'
|
|
116
|
+
type: :development
|
|
117
|
+
prerelease: false
|
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
119
|
+
requirements:
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: '0'
|
|
96
123
|
description: |2
|
|
97
124
|
The sys-filesystem library provides a cross-platform interface for
|
|
98
125
|
gathering filesystem information, such as disk space and mount point data.
|
|
@@ -121,6 +148,7 @@ files:
|
|
|
121
148
|
- lib/sys/windows/sys/filesystem/functions.rb
|
|
122
149
|
- lib/sys/windows/sys/filesystem/helper.rb
|
|
123
150
|
- spec/spec_helper.rb
|
|
151
|
+
- spec/sys_filesystem_shared.rb
|
|
124
152
|
- spec/sys_filesystem_unix_spec.rb
|
|
125
153
|
- spec/sys_filesystem_windows_spec.rb
|
|
126
154
|
- sys-filesystem.gemspec
|
|
@@ -134,7 +162,9 @@ metadata:
|
|
|
134
162
|
documentation_uri: https://github.com/djberg96/sys-filesystem/wiki
|
|
135
163
|
source_code_uri: https://github.com/djberg96/sys-filesystem
|
|
136
164
|
wiki_uri: https://github.com/djberg96/sys-filesystem/wiki
|
|
137
|
-
|
|
165
|
+
rubygems_mfa_required: 'true'
|
|
166
|
+
github_repo: https://github.com/djberg96/sys-filesystem
|
|
167
|
+
funding_uri: https://github.com/sponsors/djberg96
|
|
138
168
|
rdoc_options: []
|
|
139
169
|
require_paths:
|
|
140
170
|
- lib
|
|
@@ -149,8 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
179
|
- !ruby/object:Gem::Version
|
|
150
180
|
version: '0'
|
|
151
181
|
requirements: []
|
|
152
|
-
rubygems_version: 3.
|
|
153
|
-
signing_key:
|
|
182
|
+
rubygems_version: 3.6.9
|
|
154
183
|
specification_version: 4
|
|
155
184
|
summary: A Ruby interface for getting file system information.
|
|
156
185
|
test_files:
|
metadata.gz.sig
CHANGED
|
Binary file
|