utils 0.24.2 → 0.26.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 +4 -4
- data/.github/workflows/codeql-analysis.yml +72 -0
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/bin/all_images +24 -19
- data/bin/ssl_cert_info +35 -0
- data/lib/utils/version.rb +1 -1
- data/utils.gemspec +7 -6
- metadata +8 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec03d481617e20bfb1c67fde31dd79c20b4f43411518eb4334bccb0dee620a94
|
|
4
|
+
data.tar.gz: e4f3a7011f04303a8e65cfcfeb3e2cd620bbe5e55afc00d88cc97dcc91fbc834
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f19b6f248fe529790c26bd6fdcb67bb961c6f9accbb938da84df9d32a2c0487ce27502c6f2bcf28b48648f4db2b6c53d7192c8feb3948edc599a51ed9f82e87
|
|
7
|
+
data.tar.gz: 0b6cdee5d278d26cff911dd05ffcdbcc466cea3ea9594b3c72c9ed838558aff361256a4f04c3074db062b515f4903f69afebb2eda990a0b2c23a2e7352ec33b6
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
|
2
|
+
# to commit it to your repository.
|
|
3
|
+
#
|
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
|
5
|
+
# or to provide custom queries or build logic.
|
|
6
|
+
#
|
|
7
|
+
# ******** NOTE ********
|
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
|
10
|
+
# supported CodeQL languages.
|
|
11
|
+
#
|
|
12
|
+
name: "CodeQL"
|
|
13
|
+
|
|
14
|
+
on:
|
|
15
|
+
push:
|
|
16
|
+
branches: [ master ]
|
|
17
|
+
pull_request:
|
|
18
|
+
# The branches below must be a subset of the branches above
|
|
19
|
+
branches: [ master ]
|
|
20
|
+
schedule:
|
|
21
|
+
- cron: '31 3 * * 1'
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
analyze:
|
|
25
|
+
name: Analyze
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
permissions:
|
|
28
|
+
actions: read
|
|
29
|
+
contents: read
|
|
30
|
+
security-events: write
|
|
31
|
+
|
|
32
|
+
strategy:
|
|
33
|
+
fail-fast: false
|
|
34
|
+
matrix:
|
|
35
|
+
language: [ 'ruby' ]
|
|
36
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
|
37
|
+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
|
38
|
+
|
|
39
|
+
steps:
|
|
40
|
+
- name: Checkout repository
|
|
41
|
+
uses: actions/checkout@v3
|
|
42
|
+
|
|
43
|
+
# Initializes the CodeQL tools for scanning.
|
|
44
|
+
- name: Initialize CodeQL
|
|
45
|
+
uses: github/codeql-action/init@v2
|
|
46
|
+
with:
|
|
47
|
+
languages: ${{ matrix.language }}
|
|
48
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
49
|
+
# By default, queries listed here will override any specified in a config file.
|
|
50
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
51
|
+
|
|
52
|
+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
|
53
|
+
# queries: security-extended,security-and-quality
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
57
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
|
58
|
+
- name: Autobuild
|
|
59
|
+
uses: github/codeql-action/autobuild@v2
|
|
60
|
+
|
|
61
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
|
62
|
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
63
|
+
|
|
64
|
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
|
65
|
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
|
66
|
+
|
|
67
|
+
# - run: |
|
|
68
|
+
# echo "Run, Build Application using script"
|
|
69
|
+
# ./location_of_script_within_repo/buildscript.sh
|
|
70
|
+
|
|
71
|
+
- name: Perform CodeQL Analysis
|
|
72
|
+
uses: github/codeql-action/analyze@v2
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.26.1
|
data/bin/all_images
CHANGED
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# Configure like so:
|
|
3
|
-
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
7
|
-
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
#
|
|
3
|
+
#dockerfile: |-
|
|
4
|
+
# RUN apk add --no-cache build-base git
|
|
5
|
+
# RUN gem update --system
|
|
6
|
+
# RUN gem install gem_hadar bundler
|
|
7
|
+
#
|
|
8
|
+
#script: &script |-
|
|
9
|
+
# echo -e "\e[1m"
|
|
10
|
+
# ruby -v
|
|
11
|
+
# bundle
|
|
12
|
+
# echo -e "\e[0m"
|
|
13
|
+
# if rake test
|
|
14
|
+
#
|
|
15
|
+
#images:
|
|
16
|
+
# ruby:3.0-alpine: *script
|
|
17
|
+
# ruby:2.7-alpine: *script
|
|
18
|
+
# ruby:2.6-alpine: *script
|
|
19
|
+
# ruby:2.5-alpine: *script
|
|
20
|
+
# ruby:2.4-alpine: *script
|
|
21
|
+
# ruby:2.3-alpine: *script
|
|
18
22
|
|
|
19
23
|
require 'yaml'
|
|
20
24
|
require 'tmpdir'
|
|
@@ -24,7 +28,8 @@ include FileUtils
|
|
|
24
28
|
alias sh system
|
|
25
29
|
|
|
26
30
|
def provide_image(image, dockerfile)
|
|
27
|
-
|
|
31
|
+
prefix = $config.fetch('prefix', File.basename(Dir.pwd))
|
|
32
|
+
tag = "#{prefix}/all_images/#{image}"
|
|
28
33
|
sh "docker pull '#{image}'"
|
|
29
34
|
build_dir = File.join(Dir.tmpdir, 'build')
|
|
30
35
|
mkdir_p build_dir
|
|
@@ -53,9 +58,9 @@ def green(string)
|
|
|
53
58
|
"\e[32m#{string}\e[0m"
|
|
54
59
|
end
|
|
55
60
|
|
|
56
|
-
config = YAML.load_file(ARGV.shift || '.all_images.yml')
|
|
57
|
-
dockerfile = config['dockerfile'].to_s
|
|
58
|
-
Array(config['images']).each do |image, script|
|
|
61
|
+
$config = YAML.load_file(ARGV.shift || '.all_images.yml')
|
|
62
|
+
dockerfile = $config['dockerfile'].to_s
|
|
63
|
+
Array($config['images']).each do |image, script|
|
|
59
64
|
tag = provide_image image, dockerfile
|
|
60
65
|
if sh "docker run --name all_images -v `pwd`:/work '#{tag}' sh -c '#{script}'"
|
|
61
66
|
puts green('SUCCESS')
|
data/bin/ssl_cert_info
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
def cert_info(crt)
|
|
4
|
+
check_cmd = 'openssl x509 -inform pem -subject -fingerprint -issuer -sha256 -dates'
|
|
5
|
+
IO.popen(check_cmd, 'w+') do |process|
|
|
6
|
+
process.write crt
|
|
7
|
+
process.close_write
|
|
8
|
+
return process.read
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def split_certs(input)
|
|
13
|
+
inside_cert = false
|
|
14
|
+
certs = []
|
|
15
|
+
input.each do |line|
|
|
16
|
+
case line
|
|
17
|
+
when /^-+BEGIN\s+CERTIFICATE-+$/
|
|
18
|
+
certs << line
|
|
19
|
+
inside_cert = true
|
|
20
|
+
next
|
|
21
|
+
when /^-+END\s+CERTIFICATE-+$/
|
|
22
|
+
certs.last << line
|
|
23
|
+
inside_cert = false
|
|
24
|
+
next
|
|
25
|
+
end
|
|
26
|
+
if inside_cert
|
|
27
|
+
certs.last << line
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
certs
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
split_certs(ARGF).each do |c|
|
|
34
|
+
puts "", cert_info(c)
|
|
35
|
+
end
|
data/lib/utils/version.rb
CHANGED
data/utils.gemspec
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: utils 0.
|
|
2
|
+
# stub: utils 0.26.1 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "utils".freeze
|
|
6
|
-
s.version = "0.
|
|
6
|
+
s.version = "0.26.1"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
|
10
10
|
s.authors = ["Florian Frank".freeze]
|
|
11
|
-
s.date = "
|
|
11
|
+
s.date = "2022-05-06"
|
|
12
12
|
s.description = "This ruby gem provides some useful command line utilities".freeze
|
|
13
13
|
s.email = "flori@ping.de".freeze
|
|
14
|
-
s.executables = ["all_images".freeze, "ascii7".freeze, "blameline".freeze, "classify".freeze, "create_cstags".freeze, "create_tags".freeze, "discover".freeze, "edit".freeze, "edit_wait".freeze, "enum".freeze, "fix-brew".freeze, "git-empty".freeze, "git-versions".freeze, "irb_connect".freeze, "json_check".freeze, "long_lines".freeze, "myex".freeze, "number_files".freeze, "on_change".freeze, "path".freeze, "probe".freeze, "search".freeze, "sedit".freeze, "serve".freeze, "ssh-tunnel".freeze, "strip_spaces".freeze, "untest".freeze, "utils-utilsrc".freeze, "vcf2alias".freeze]
|
|
14
|
+
s.executables = ["all_images".freeze, "ascii7".freeze, "blameline".freeze, "classify".freeze, "create_cstags".freeze, "create_tags".freeze, "discover".freeze, "edit".freeze, "edit_wait".freeze, "enum".freeze, "fix-brew".freeze, "git-empty".freeze, "git-versions".freeze, "irb_connect".freeze, "json_check".freeze, "long_lines".freeze, "myex".freeze, "number_files".freeze, "on_change".freeze, "path".freeze, "probe".freeze, "search".freeze, "sedit".freeze, "serve".freeze, "ssh-tunnel".freeze, "ssl_cert_info".freeze, "strip_spaces".freeze, "untest".freeze, "utils-utilsrc".freeze, "vcf2alias".freeze]
|
|
15
15
|
s.extra_rdoc_files = ["README.md".freeze, "lib/utils.rb".freeze, "lib/utils/config_file.rb".freeze, "lib/utils/editor.rb".freeze, "lib/utils/file_xt.rb".freeze, "lib/utils/finder.rb".freeze, "lib/utils/grepper.rb".freeze, "lib/utils/irb.rb".freeze, "lib/utils/irb/service.rb".freeze, "lib/utils/line_blamer.rb".freeze, "lib/utils/line_formatter.rb".freeze, "lib/utils/md5.rb".freeze, "lib/utils/patterns.rb".freeze, "lib/utils/probe_server.rb".freeze, "lib/utils/ssh_tunnel_specification.rb".freeze, "lib/utils/version.rb".freeze, "lib/utils/xt/source_location_extension.rb".freeze]
|
|
16
|
-
s.files = [".gitignore".freeze, "COPYING".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "bin/all_images".freeze, "bin/ascii7".freeze, "bin/blameline".freeze, "bin/classify".freeze, "bin/create_cstags".freeze, "bin/create_tags".freeze, "bin/discover".freeze, "bin/edit".freeze, "bin/edit_wait".freeze, "bin/enum".freeze, "bin/fix-brew".freeze, "bin/git-empty".freeze, "bin/git-versions".freeze, "bin/irb_connect".freeze, "bin/json_check".freeze, "bin/long_lines".freeze, "bin/myex".freeze, "bin/number_files".freeze, "bin/on_change".freeze, "bin/path".freeze, "bin/probe".freeze, "bin/search".freeze, "bin/sedit".freeze, "bin/serve".freeze, "bin/ssh-tunnel".freeze, "bin/strip_spaces".freeze, "bin/untest".freeze, "bin/utils-utilsrc".freeze, "bin/vcf2alias".freeze, "lib/utils.rb".freeze, "lib/utils/config_file.rb".freeze, "lib/utils/editor.rb".freeze, "lib/utils/file_xt.rb".freeze, "lib/utils/finder.rb".freeze, "lib/utils/grepper.rb".freeze, "lib/utils/irb.rb".freeze, "lib/utils/irb/service.rb".freeze, "lib/utils/line_blamer.rb".freeze, "lib/utils/line_formatter.rb".freeze, "lib/utils/md5.rb".freeze, "lib/utils/patterns.rb".freeze, "lib/utils/probe_server.rb".freeze, "lib/utils/ssh_tunnel_specification.rb".freeze, "lib/utils/version.rb".freeze, "lib/utils/xt/source_location_extension.rb".freeze, "utils.gemspec".freeze]
|
|
16
|
+
s.files = [".github/workflows/codeql-analysis.yml".freeze, ".gitignore".freeze, "COPYING".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "bin/all_images".freeze, "bin/ascii7".freeze, "bin/blameline".freeze, "bin/classify".freeze, "bin/create_cstags".freeze, "bin/create_tags".freeze, "bin/discover".freeze, "bin/edit".freeze, "bin/edit_wait".freeze, "bin/enum".freeze, "bin/fix-brew".freeze, "bin/git-empty".freeze, "bin/git-versions".freeze, "bin/irb_connect".freeze, "bin/json_check".freeze, "bin/long_lines".freeze, "bin/myex".freeze, "bin/number_files".freeze, "bin/on_change".freeze, "bin/path".freeze, "bin/probe".freeze, "bin/search".freeze, "bin/sedit".freeze, "bin/serve".freeze, "bin/ssh-tunnel".freeze, "bin/ssl_cert_info".freeze, "bin/strip_spaces".freeze, "bin/untest".freeze, "bin/utils-utilsrc".freeze, "bin/vcf2alias".freeze, "lib/utils.rb".freeze, "lib/utils/config_file.rb".freeze, "lib/utils/editor.rb".freeze, "lib/utils/file_xt.rb".freeze, "lib/utils/finder.rb".freeze, "lib/utils/grepper.rb".freeze, "lib/utils/irb.rb".freeze, "lib/utils/irb/service.rb".freeze, "lib/utils/line_blamer.rb".freeze, "lib/utils/line_formatter.rb".freeze, "lib/utils/md5.rb".freeze, "lib/utils/patterns.rb".freeze, "lib/utils/probe_server.rb".freeze, "lib/utils/ssh_tunnel_specification.rb".freeze, "lib/utils/version.rb".freeze, "lib/utils/xt/source_location_extension.rb".freeze, "utils.gemspec".freeze]
|
|
17
17
|
s.homepage = "http://github.com/flori/utils".freeze
|
|
18
|
+
s.licenses = ["GPL-2.0".freeze]
|
|
18
19
|
s.rdoc_options = ["--title".freeze, "Utils - Some useful command line utilities".freeze, "--main".freeze, "README.md".freeze]
|
|
19
|
-
s.rubygems_version = "3.
|
|
20
|
+
s.rubygems_version = "3.3.13".freeze
|
|
20
21
|
s.summary = "Some useful command line utilities".freeze
|
|
21
22
|
|
|
22
23
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.26.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Frank
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gem_hadar
|
|
@@ -136,6 +136,7 @@ executables:
|
|
|
136
136
|
- sedit
|
|
137
137
|
- serve
|
|
138
138
|
- ssh-tunnel
|
|
139
|
+
- ssl_cert_info
|
|
139
140
|
- strip_spaces
|
|
140
141
|
- untest
|
|
141
142
|
- utils-utilsrc
|
|
@@ -160,6 +161,7 @@ extra_rdoc_files:
|
|
|
160
161
|
- lib/utils/version.rb
|
|
161
162
|
- lib/utils/xt/source_location_extension.rb
|
|
162
163
|
files:
|
|
164
|
+
- ".github/workflows/codeql-analysis.yml"
|
|
163
165
|
- ".gitignore"
|
|
164
166
|
- COPYING
|
|
165
167
|
- Gemfile
|
|
@@ -191,6 +193,7 @@ files:
|
|
|
191
193
|
- bin/sedit
|
|
192
194
|
- bin/serve
|
|
193
195
|
- bin/ssh-tunnel
|
|
196
|
+
- bin/ssl_cert_info
|
|
194
197
|
- bin/strip_spaces
|
|
195
198
|
- bin/untest
|
|
196
199
|
- bin/utils-utilsrc
|
|
@@ -213,7 +216,8 @@ files:
|
|
|
213
216
|
- lib/utils/xt/source_location_extension.rb
|
|
214
217
|
- utils.gemspec
|
|
215
218
|
homepage: http://github.com/flori/utils
|
|
216
|
-
licenses:
|
|
219
|
+
licenses:
|
|
220
|
+
- GPL-2.0
|
|
217
221
|
metadata: {}
|
|
218
222
|
post_install_message:
|
|
219
223
|
rdoc_options:
|
|
@@ -234,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
234
238
|
- !ruby/object:Gem::Version
|
|
235
239
|
version: '0'
|
|
236
240
|
requirements: []
|
|
237
|
-
rubygems_version: 3.
|
|
241
|
+
rubygems_version: 3.3.13
|
|
238
242
|
signing_key:
|
|
239
243
|
specification_version: 4
|
|
240
244
|
summary: Some useful command line utilities
|