ptools 1.4.2-universal-mingw32 → 1.4.3-universal-mingw32
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 +5 -0
- data/MANIFEST.md +1 -0
- data/README.md +29 -24
- data/Rakefile +4 -1
- data/lib/ptools.rb +92 -119
- data/ptools.gemspec +10 -7
- data/spec/binary_spec.rb +30 -30
- data/spec/constants_spec.rb +3 -3
- data/spec/head_spec.rb +18 -18
- data/spec/image_spec.rb +163 -26
- data/spec/img/jpg_no_ext +0 -0
- data/spec/img/test.bmp +0 -0
- data/spec/img/test.tiff +0 -0
- data/spec/nlconvert_spec.rb +51 -53
- data/spec/sparse_spec.rb +17 -21
- data/spec/spec_helper.rb +7 -0
- data/spec/tail_spec.rb +55 -55
- data/spec/touch_spec.rb +22 -22
- data/spec/wc_spec.rb +28 -28
- data/spec/whereis_spec.rb +29 -30
- data/spec/which_spec.rb +52 -60
- data.tar.gz.sig +0 -0
- metadata +37 -4
- metadata.gz.sig +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ptools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.3
|
5
5
|
platform: universal-mingw32
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
|
36
36
|
WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
38
|
+
date: 2022-11-26 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: rake
|
@@ -65,6 +65,34 @@ dependencies:
|
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '3.9'
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: rubocop
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
type: :development
|
76
|
+
prerelease: false
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: rubocop-rspec
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
68
96
|
- !ruby/object:Gem::Dependency
|
69
97
|
name: win32-file
|
70
98
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,12 +128,16 @@ files:
|
|
100
128
|
- spec/constants_spec.rb
|
101
129
|
- spec/head_spec.rb
|
102
130
|
- spec/image_spec.rb
|
131
|
+
- spec/img/jpg_no_ext
|
132
|
+
- spec/img/test.bmp
|
103
133
|
- spec/img/test.gif
|
104
134
|
- spec/img/test.ico
|
105
135
|
- spec/img/test.jpg
|
106
136
|
- spec/img/test.png
|
137
|
+
- spec/img/test.tiff
|
107
138
|
- spec/nlconvert_spec.rb
|
108
139
|
- spec/sparse_spec.rb
|
140
|
+
- spec/spec_helper.rb
|
109
141
|
- spec/tail_spec.rb
|
110
142
|
- spec/touch_spec.rb
|
111
143
|
- spec/txt/empty.txt
|
@@ -121,10 +153,11 @@ licenses:
|
|
121
153
|
metadata:
|
122
154
|
homepage_uri: https://github.com/djberg96/ptools
|
123
155
|
bug_tracker_uri: https://github.com/djberg96/ptools/issues
|
124
|
-
changelog_uri: https://github.com/djberg96/ptools/blob/
|
156
|
+
changelog_uri: https://github.com/djberg96/ptools/blob/main/CHANGES.md
|
125
157
|
documentation_uri: https://github.com/djberg96/ptools/wiki
|
126
158
|
source_code_uri: https://github.com/djberg96/ptools
|
127
159
|
wiki_uri: https://github.com/djberg96/ptools/wiki
|
160
|
+
rubygems_mfa_required: 'true'
|
128
161
|
post_install_message:
|
129
162
|
rdoc_options: []
|
130
163
|
require_paths:
|
@@ -140,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
173
|
- !ruby/object:Gem::Version
|
141
174
|
version: '0'
|
142
175
|
requirements: []
|
143
|
-
rubygems_version: 3.
|
176
|
+
rubygems_version: 3.2.19
|
144
177
|
signing_key:
|
145
178
|
specification_version: 4
|
146
179
|
summary: Extra methods for the File class
|
metadata.gz.sig
CHANGED
Binary file
|