ptools 1.4.1 → 1.4.3
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 +13 -0
- data/Gemfile +1 -10
- data/MANIFEST.md +1 -0
- data/README.md +29 -24
- data/Rakefile +4 -1
- data/lib/ptools.rb +120 -120
- data/ptools.gemspec +10 -7
- data/spec/binary_spec.rb +30 -30
- data/spec/constants_spec.rb +4 -14
- 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: ruby
|
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
|
description: |2
|
69
97
|
The ptools (power tools) library provides several handy methods to
|
70
98
|
Ruby's core File class, such as File.which for finding executables,
|
@@ -86,12 +114,16 @@ files:
|
|
86
114
|
- spec/constants_spec.rb
|
87
115
|
- spec/head_spec.rb
|
88
116
|
- spec/image_spec.rb
|
117
|
+
- spec/img/jpg_no_ext
|
118
|
+
- spec/img/test.bmp
|
89
119
|
- spec/img/test.gif
|
90
120
|
- spec/img/test.ico
|
91
121
|
- spec/img/test.jpg
|
92
122
|
- spec/img/test.png
|
123
|
+
- spec/img/test.tiff
|
93
124
|
- spec/nlconvert_spec.rb
|
94
125
|
- spec/sparse_spec.rb
|
126
|
+
- spec/spec_helper.rb
|
95
127
|
- spec/tail_spec.rb
|
96
128
|
- spec/touch_spec.rb
|
97
129
|
- spec/txt/empty.txt
|
@@ -107,10 +139,11 @@ licenses:
|
|
107
139
|
metadata:
|
108
140
|
homepage_uri: https://github.com/djberg96/ptools
|
109
141
|
bug_tracker_uri: https://github.com/djberg96/ptools/issues
|
110
|
-
changelog_uri: https://github.com/djberg96/ptools/blob/
|
142
|
+
changelog_uri: https://github.com/djberg96/ptools/blob/main/CHANGES.md
|
111
143
|
documentation_uri: https://github.com/djberg96/ptools/wiki
|
112
144
|
source_code_uri: https://github.com/djberg96/ptools
|
113
145
|
wiki_uri: https://github.com/djberg96/ptools/wiki
|
146
|
+
rubygems_mfa_required: 'true'
|
114
147
|
post_install_message:
|
115
148
|
rdoc_options: []
|
116
149
|
require_paths:
|
@@ -126,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
159
|
- !ruby/object:Gem::Version
|
127
160
|
version: '0'
|
128
161
|
requirements: []
|
129
|
-
rubygems_version: 3.
|
162
|
+
rubygems_version: 3.3.7
|
130
163
|
signing_key:
|
131
164
|
specification_version: 4
|
132
165
|
summary: Extra methods for the File class
|
metadata.gz.sig
CHANGED
Binary file
|