fd 0.6.0 → 1.0.0

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
  SHA256:
3
- metadata.gz: 411fa810d518ecba93b02f527e32b125961260593583ad9aee2464e1d62d7d87
4
- data.tar.gz: e0418c2115bebff4f09124c4331f7ec74f71932f8803220b87186e58fa6874c2
3
+ metadata.gz: 867ca2b5b5c93216fffa4486285d16f53a066f1b98359c18781c954abdc42071
4
+ data.tar.gz: f56557d88d4e1ff44cc5702e6fa2dc7f24c518f7035b3e1ed677c378b678e98a
5
5
  SHA512:
6
- metadata.gz: 5128ae855d0e180f24a0f1c02febe0988190c3961fc71a6189c683c73dbb61c91f35e7d9a1b95a64e9125a76961e3790d24c0cb8472eaa2c5ea70d30fd3886fb
7
- data.tar.gz: 174171890a8c4b1cf209c15b835442083c3820b2c29695036df91e91e1ceb37b8e8368e8509a1f95572da4d15470dd29cc7d320e4613ef3407046319db0e62ef
6
+ metadata.gz: 0ee0824ce6e7b1cefa11dba4ffbd06b514e8f3f7f82d56d0f77c5aa0003dc85df293c5dbd04bbb0d9c67f03db4e2d00f89e8466c1a67a45a4560fb76ab808462
7
+ data.tar.gz: f8a1ac2e48b72124faa67d9667ba37694b1e26e480a1a278c7f2f95d0aa9f10c2bd788475a7849f7794a87a3b2c76210a118023b9ba55a39e33550307e80c408
@@ -10,7 +10,7 @@ jobs:
10
10
  - name: Set up Ruby
11
11
  uses: ruby/setup-ruby@v1
12
12
  with:
13
- ruby-version: 3.2.1
13
+ ruby-version: 3.3
14
14
  bundler-cache: true
15
15
  - name: Run the default task
16
16
  run: bundle exec rake
data/fd.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Stephan Kämper']
9
9
  spec.email = ['the.tester@seasidetesting.com']
10
10
 
11
- spec.summary = 'fd is a simple (currently simplistic) tool to dump file contents in binary & text format - side by side'
11
+ spec.summary = 'fd is a simple tool to dump file contents in binary & text format side by side'
12
12
  spec.description = 'fd prints the given file in two columns: Hex values in the left column and the textual representations in the right column.'
13
13
  spec.homepage = 'https://github.com/s2k/fd'
14
14
  spec.license = 'MIT'
@@ -30,6 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency 'simplecov'
31
31
  spec.add_development_dependency 'terminal-notifier'
32
32
  spec.add_development_dependency 'terminal-notifier-guard'
33
+ spec.add_development_dependency 'mutex_m'
33
34
 
34
35
  # Specify which files should be added to the gem when it is released.
35
36
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
data/lib/fd/version.rb CHANGED
@@ -4,7 +4,7 @@
4
4
  # All other code is in lib/fd.rb
5
5
  #
6
6
  class Fd
7
- VERSION = '0.6.0'
7
+ VERSION = '1.0.0'
8
8
 
9
9
  def self.version
10
10
  VERSION
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephan Kämper
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-17 00:00:00.000000000 Z
11
+ date: 2023-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard-bundler
@@ -150,6 +150,20 @@ dependencies:
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: mutex_m
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
153
167
  description: 'fd prints the given file in two columns: Hex values in the left column
154
168
  and the textual representations in the right column.'
155
169
  email:
@@ -199,9 +213,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
213
  - !ruby/object:Gem::Version
200
214
  version: '0'
201
215
  requirements: []
202
- rubygems_version: 3.4.19
216
+ rubygems_version: 3.5.3
203
217
  signing_key:
204
218
  specification_version: 4
205
- summary: fd is a simple (currently simplistic) tool to dump file contents in binary
206
- & text format - side by side
219
+ summary: fd is a simple tool to dump file contents in binary & text format side by
220
+ side
207
221
  test_files: []