tebako 0.12.16 → 0.13.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/CMakeLists.txt +2 -2
- data/CODE_OF_CONDUCT.adoc +128 -0
- data/CONTRIBUTING.adoc +294 -0
- data/Gemfile +2 -2
- data/INSTALLATION.adoc +233 -0
- data/LICENSE.md +33 -0
- data/README.adoc +387 -528
- data/Rakefile +2 -2
- data/cmake/copy_dir.cmake +1 -1
- data/common.env +1 -1
- data/exe/tebako +2 -2
- data/exe/tebako-packager +2 -2
- data/include/tebako/tebako-fs.h +2 -2
- data/include/tebako/tebako-main.h +2 -2
- data/lib/tebako/build_helpers.rb +2 -2
- data/lib/tebako/cache_manager.rb +2 -2
- data/lib/tebako/cli.rb +19 -10
- data/lib/tebako/cli_helpers.rb +1 -1
- data/lib/tebako/codegen.rb +2 -2
- data/lib/tebako/deploy_helper.rb +9 -8
- data/lib/tebako/error.rb +1 -1
- data/lib/tebako/options_manager.rb +1 -1
- data/lib/tebako/package_descriptor.rb +2 -2
- data/lib/tebako/packager/pass1_patch.rb +1 -1
- data/lib/tebako/packager/pass1a_patch.rb +1 -1
- data/lib/tebako/packager/pass2_patch.rb +1 -1
- data/lib/tebako/packager/pass2_patch_crt.rb +1 -1
- data/lib/tebako/packager/pass2msys_patch.rb +1 -1
- data/lib/tebako/packager/patch.rb +1 -1
- data/lib/tebako/packager/patch_buildsystem.rb +2 -2
- data/lib/tebako/packager/patch_helpers.rb +2 -2
- data/lib/tebako/packager/patch_libraries.rb +9 -10
- data/lib/tebako/packager/patch_literals.rb +1 -1
- data/lib/tebako/packager/patch_main.rb +2 -2
- data/lib/tebako/packager/rubygems_patch.rb +1 -1
- data/lib/tebako/packager.rb +1 -1
- data/lib/tebako/packager_lite.rb +1 -1
- data/lib/tebako/ruby_builder.rb +1 -1
- data/lib/tebako/ruby_version.rb +4 -3
- data/lib/tebako/scenario_manager.rb +1 -1
- data/lib/tebako/stripper.rb +1 -1
- data/lib/tebako/version.rb +2 -2
- data/lib/tebako.rb +2 -2
- data/src/tebako-main.cpp +2 -2
- data/tebako.gemspec +2 -2
- data/tools/.github/workflows/build-containers.yml +190 -0
- data/tools/.github/workflows/lint.yml +3 -3
- data/tools/.github/workflows/test.yml +149 -9
- data/tools/ci-scripts/arm-brew-install.sh +1 -1
- data/tools/ci-scripts/arm-brew-setup.sh +1 -1
- data/tools/ci-scripts/level-up.sh +1 -1
- data/tools/ci-scripts/patch-fbthrift.sh +5 -1
- data/tools/ci-scripts/patch-folly.sh +7 -2
- data/tools/ci-scripts/tools.sh +1 -1
- data/tools/ci-scripts/x86-brew-install.sh +1 -1
- data/tools/ci-scripts/x86-brew-setup.sh +1 -1
- data/tools/cmake-scripts/def-external-project.cmake +1 -1
- data/tools/cmake-scripts/macos-environment.cmake +2 -2
- data/tools/cmake-scripts/msys-environment.cmake +1 -1
- data/tools/cmake-scripts/setup-libarchive.cmake +4 -8
- data/tools/cmake-scripts/setup-libfmt.cmake +1 -1
- data/tools/cmake-scripts/setup-libhowardhinnerdate.cmake +1 -1
- data/tools/cmake-scripts/setup-libutfcpp.cmake +2 -2
- data/tools/cmake-scripts/setup-openssl-1.1.1.cmake +1 -1
- data/tools/docker/alpine-3.17-dev.Dockerfile +49 -0
- data/tools/docker/tools/tools.sh +66 -0
- data/tools/docker/ubuntu-20.04-dev.Dockerfile +51 -0
- data/tools/dwarfs-test-helper/CMakeLists.txt +1 -1
- data/tools/include/pro-statvfs.h +1 -1
- data/tools/tests/cmake/CMakeLists.txt +1 -1
- data/tools/tests/setup-libfmt/CMakeLists.txt +1 -1
- data/tools/tests/setup-libhowardhinnerdate/CMakeLists.txt +1 -1
- data/tools/tests/setup-librachive/CMakeLists.txt +1 -1
- data/tools/tests/setup-libutfcpp/CMakeLists.txt +1 -1
- data/tools/tests/setup-openssl/CMakeLists.txt +1 -1
- metadata +10 -2
data/Rakefile
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/cmake/copy_dir.cmake
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Copyright (c) 2021, [Ribose Inc](https://www.ribose.com).
|
2
2
|
# All rights reserved.
|
3
|
-
# This file is a part of
|
3
|
+
# This file is a part of the Tebako project.
|
4
4
|
#
|
5
5
|
# Redistribution and use in source and binary forms, with or without
|
6
6
|
# modification, are permitted provided that the following conditions
|
data/common.env
CHANGED
data/exe/tebako
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
# Copyright (c) 2023 [Ribose Inc](https://www.ribose.com).
|
4
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
5
5
|
# All rights reserved.
|
6
|
-
# This file is a part of
|
6
|
+
# This file is a part of the Tebako project.
|
7
7
|
#
|
8
8
|
# Redistribution and use in source and binary forms, with or without
|
9
9
|
# modification, are permitted provided that the following conditions
|
data/exe/tebako-packager
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
# Copyright (c) 2023-
|
4
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
5
5
|
# All rights reserved.
|
6
|
-
# This file is a part of
|
6
|
+
# This file is a part of the Tebako project.
|
7
7
|
#
|
8
8
|
# Redistribution and use in source and binary forms, with or without
|
9
9
|
# modification, are permitted provided that the following conditions
|
data/include/tebako/tebako-fs.h
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
/**
|
2
2
|
*
|
3
|
-
* Copyright (c) 2021-
|
3
|
+
* Copyright (c) 2021-2025, [Ribose Inc](https://www.ribose.com).
|
4
4
|
* All rights reserved.
|
5
|
-
* This file is a part of
|
5
|
+
* This file is a part of the Tebako project.
|
6
6
|
*
|
7
7
|
* Redistribution and use in source and binary forms, with or without
|
8
8
|
* modification, are permitted provided that the following conditions
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/**
|
2
2
|
*
|
3
|
-
* Copyright (c) 2021-
|
3
|
+
* Copyright (c) 2021-2025, [Ribose Inc](https://www.ribose.com).
|
4
4
|
* All rights reserved.
|
5
|
-
* This file is a part of
|
5
|
+
* This file is a part of the Tebako project.
|
6
6
|
*
|
7
7
|
* Redistribution and use in source and binary forms, with or without
|
8
8
|
* modification, are permitted provided that the following conditions
|
data/lib/tebako/build_helpers.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/cache_manager.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c)
|
3
|
+
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/cli.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
# Copyright (c) 2021-
|
4
|
+
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
5
5
|
# All rights reserved.
|
6
|
-
# This file is a part of
|
6
|
+
# This file is a part of the Tebako project.
|
7
7
|
#
|
8
8
|
# Redistribution and use in source and binary forms, with or without
|
9
9
|
# modification, are permitted provided that the following conditions
|
@@ -157,23 +157,32 @@ module Tebako
|
|
157
157
|
return unless nmr.any? && ScenarioManagerBase.new.msys?
|
158
158
|
|
159
159
|
nmr.each do |path|
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
end
|
160
|
+
next unless File.directory?(path)
|
161
|
+
|
162
|
+
extra_win_clean_dir(path)
|
164
163
|
end
|
164
|
+
|
165
165
|
FileUtils.rm_rf(nmr, secure: true)
|
166
166
|
end
|
167
167
|
|
168
|
+
def extra_win_clean_dir(path)
|
169
|
+
Find.find(path) do |file_path|
|
170
|
+
full_path = "//?/#{file_path}"
|
171
|
+
next unless File.file?(full_path) && File.basename(full_path) == "NUL"
|
172
|
+
|
173
|
+
FileUtils.rm_f(full_path)
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
no_commands do
|
168
179
|
def initialize(*args)
|
169
180
|
super
|
170
181
|
return if args[2][:current_command].name.include?("hash")
|
171
182
|
|
172
183
|
puts "Tebako executable packager version #{Tebako::VERSION}"
|
173
184
|
end
|
174
|
-
end
|
175
185
|
|
176
|
-
no_commands do
|
177
186
|
def options
|
178
187
|
original_options = super
|
179
188
|
tebafile = original_options["tebafile"].nil? ? DEFAULT_TEBAFILE : original_options["tebafile"]
|
@@ -189,7 +198,9 @@ module Tebako
|
|
189
198
|
c_path = Pathname.new(__FILE__).realpath
|
190
199
|
@source ||= File.expand_path("../../..", c_path)
|
191
200
|
end
|
201
|
+
end
|
192
202
|
|
203
|
+
no_commands do
|
193
204
|
def validate_press_options
|
194
205
|
return unless options["mode"] != "runtime"
|
195
206
|
|
@@ -201,9 +212,7 @@ module Tebako
|
|
201
212
|
end
|
202
213
|
raise Thor::Error, "No value provided for required options #{opts}" unless opts.empty?
|
203
214
|
end
|
204
|
-
end
|
205
215
|
|
206
|
-
no_commands do
|
207
216
|
include Tebako::CliHelpers
|
208
217
|
end
|
209
218
|
end
|
data/lib/tebako/cli_helpers.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/codegen.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c)
|
3
|
+
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/deploy_helper.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c)
|
3
|
+
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -110,12 +110,13 @@ module Tebako
|
|
110
110
|
private
|
111
111
|
|
112
112
|
def bundle_config
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
113
|
+
bundle_config_option(["build.ffi", "--disable-system-libffi"])
|
114
|
+
bundle_config_option(["build.nokogiri", @nokogiri_option])
|
115
|
+
bundle_config_option(["force_ruby_platform", @force_ruby_platform])
|
116
|
+
end
|
117
|
+
|
118
|
+
def bundle_config_option(opt)
|
119
|
+
BuildHelpers.run_with_capture_v([@bundler_command, bundler_reference, "config", "set", "--local"] + opt)
|
119
120
|
end
|
120
121
|
|
121
122
|
def check_entry_point(entry_point_root)
|
data/lib/tebako/error.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2021-
|
3
|
+
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -80,14 +80,13 @@ module Tebako
|
|
80
80
|
].freeze
|
81
81
|
|
82
82
|
MSYS_LIBRARIES = [
|
83
|
-
"-l:liblz4.a", "-l:libz.a",
|
84
|
-
"-l:libncurses.a", "-l:
|
85
|
-
"
|
86
|
-
"-
|
87
|
-
"-l:
|
88
|
-
"-
|
89
|
-
"-
|
90
|
-
"-luuid", "-lws2_32"
|
83
|
+
"-l:liblz4.a", "-l:libz.a", "-l:libzstd.a", "-l:liblzma.a",
|
84
|
+
"-l:libncurses.a", "-l:liblzma.a", "-l:libiberty.a", "LIBYAML",
|
85
|
+
"-l:libffi.a", "-l:libboost_chrono-mt.a", "-l:libstdc++.a", "-l:libdl.a",
|
86
|
+
"-static-libgcc", "-static-libstdc++", "-l:libssl.a", "-l:libcrypto.a",
|
87
|
+
"-l:libz.a", "-l:libwinpthread.a", "-lcrypt32", "-lshlwapi",
|
88
|
+
"-lwsock32", "-liphlpapi", "-limagehlp", "-lbcrypt",
|
89
|
+
"-lole32", "-loleaut32", "-luuid", "-lws2_32"
|
91
90
|
].freeze
|
92
91
|
|
93
92
|
def linux_gnu_libraries(ruby_ver, with_compression)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/packager.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/packager_lite.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/ruby_builder.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/ruby_version.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2023-
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -45,7 +45,8 @@ module Tebako
|
|
45
45
|
"3.3.5" => "3781a3504222c2f26cb4b9eb9c1a12dbf4944d366ce24a9ff8cf99ecbce75196",
|
46
46
|
"3.3.6" => "8dc48fffaf270f86f1019053f28e51e4da4cce32a36760a0603a9aee67d7fd8d",
|
47
47
|
"3.3.7" => "9c37c3b12288c7aec20ca121ce76845be5bb5d77662a24919651aaf1d12c8628",
|
48
|
-
"3.4.1" => "3d385e5d22d368b064c817a13ed8e3cc3f71a7705d7ed1bae78013c33aa7c87f"
|
48
|
+
"3.4.1" => "3d385e5d22d368b064c817a13ed8e3cc3f71a7705d7ed1bae78013c33aa7c87f",
|
49
|
+
"3.4.2" => "41328ac21f2bfdd7de6b3565ef4f0dd7543354d37e96f157a1552a6bd0eb364b"
|
49
50
|
}.freeze
|
50
51
|
|
51
52
|
MIN_RUBY_VERSION_WINDOWS = "3.1.6"
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/stripper.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/lib/tebako/version.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
@@ -26,5 +26,5 @@
|
|
26
26
|
# POSSIBILITY OF SUCH DAMAGE.
|
27
27
|
|
28
28
|
module Tebako
|
29
|
-
VERSION = "0.
|
29
|
+
VERSION = "0.13.1"
|
30
30
|
end
|
data/lib/tebako.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c)
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|
data/src/tebako-main.cpp
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
/**
|
2
2
|
*
|
3
|
-
* Copyright (c) 2021-
|
3
|
+
* Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
* All rights reserved.
|
5
|
-
* This file is a part of
|
5
|
+
* This file is a part of the Tebako project.
|
6
6
|
*
|
7
7
|
* Redistribution and use in source and binary forms, with or without
|
8
8
|
* modification, are permitted provided that the following conditions
|
data/tebako.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c)
|
3
|
+
# Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
|
4
4
|
# All rights reserved.
|
5
|
-
# This file is a part of
|
5
|
+
# This file is a part of the Tebako project.
|
6
6
|
#
|
7
7
|
# Redistribution and use in source and binary forms, with or without
|
8
8
|
# modification, are permitted provided that the following conditions
|