standalone-ruby 1.1 → 1.2

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: 85ed0467bdba5ba6bdc1509b18eef00152ddaf0b69e6dccbfd5487c6bab197c8
4
- data.tar.gz: c6df97a2467e7e12dddf1c43329dfce233501eaf2f8ec5d4cdf15132d6abda89
3
+ metadata.gz: a1cd37bb7292c869531918c44950fc53378c6ce14328cbf9bc399078b13ae615
4
+ data.tar.gz: 6ecc1a353744fa17219138c73789b88f2f58237ddbbfa2dcd42d871102019c40
5
5
  SHA512:
6
- metadata.gz: 7746a3280b389b53897348b16ca47de1a97cb1278f76cc46c79aa2b49a374b052c3a33e9d0fe39b4e4d39999d6b2d56b6152dcc1acb1a13e336e8dc3a6407be6
7
- data.tar.gz: cd0680d01ec7d912ef1797451d6da32fc067d1acd80cde4e6a2f2d2cb1370979e3fdcebdaed997e0ba3f4e6d2eb51cb5d52f71a0d0cede763a13c6b505eebad1
6
+ metadata.gz: 031ecc895cf91ae3fd3d18d98ef58000c07bb89ba59576f2bc401c4b50bb51d79e7e3bd2197ecd11b4b171ded1f9b49a9f9c46b490ef95530e8f3f06e5793aa9
7
+ data.tar.gz: 2decfc776f182a26cdbab403fc721b03634084fc9f2682f6bcd9264b3b623ed620cd869ae01f00da814c77ea68bf76ccc8ef9aa669d454685a33e0477070de37
data/CHANGELOG.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # Changelog
2
2
 
3
3
  ## [1.0] - 2025-03-27
4
- ### Added
5
4
  - First version of Standalone-Ruby released.
6
5
 
7
6
  ## [1.1] - 2025-03-28
8
- ### Added
9
- - Added support for projects with visual interfaces.
7
+ - Added support for projects with visual interfaces.
8
+
9
+ ## [1.2] - 2025-04-02
10
+ - Added .cmd file extension support.
11
+ - Added options for new supports
12
+ - Project text outputs corrected
13
+ - Added launcher to lib folder
data/bin/standalone-ruby CHANGED
@@ -1,4 +1,4 @@
1
1
  require File.expand_path('../lib/standalone_ruby', __dir__)
2
2
 
3
3
  standalone_ruby = StandaloneRuby.new
4
- standalone_ruby.run
4
+ standalone_ruby.run
@@ -0,0 +1,9 @@
1
+ @echo off
2
+ setlocal
3
+
4
+ set "RUBY_PATH=%~dp0STANDALONE_RUBY_PATH"
5
+ set "SCRIPT_PATH=%~dp0STANDALONE_MAIN_FILE"
6
+
7
+ start "" /B "%RUBY_PATH%" "%SCRIPT_PATH%"
8
+
9
+ exit
@@ -1,36 +1,7 @@
1
- require 'optparse'
2
- require_relative 'utils/displayer'
3
- require_relative 'utils/parameter_parser'
4
- require_relative 'utils/ruby_copy'
5
- require_relative 'utils/launcher_handler'
6
- # require_relative 'utils/logger_helper'
1
+ require_relative 'utils/launcher'
7
2
 
8
3
  class StandaloneRuby
9
- def initialize
10
- @parser = ParameterParser.new
11
- @parser.parse
12
-
13
- @params = @parser.params
14
- @displayer = Displayer.new(@params)
15
- @ruby_copy = RubyCopy.new(@params)
16
- @launcher_handler = LauncherHandler.new(@params)
17
- end
18
-
19
4
  def run
20
- Signal.trap("INT") do
21
- puts "\nProgram interrupted. Shutting down..."
22
- exit(0)
23
- end
24
-
25
- if @params[:version]
26
- puts "Standalone Ruby Gem Version 1.0"
27
- return
28
- end
29
-
30
- @displayer.banner
31
- @displayer.display_params
32
-
33
- @launcher_handler.handle
34
- @ruby_copy.robocopy_interpreter
5
+ Launcher.new.run
35
6
  end
36
- end
7
+ end
@@ -0,0 +1,36 @@
1
+ require 'optparse'
2
+
3
+ class Launcher
4
+
5
+ require_relative 'displayer'
6
+ require_relative 'parameter_parser'
7
+ require_relative 'ruby_copy'
8
+ require_relative 'launcher_handler'
9
+ # require_relative 'logger_helper'
10
+
11
+ def initialize
12
+ @parser = ParameterParser.new
13
+ @parser.parse
14
+
15
+ @params = @parser.params
16
+ @displayer = Displayer.new(@params)
17
+ @ruby_copy = RubyCopy.new(@params)
18
+ @launcher_handler = LauncherHandler.new(@params)
19
+ end
20
+
21
+ def run
22
+ Signal.trap("INT") do
23
+ puts "\nProgram interrupted. Shutting down..."
24
+ exit(0)
25
+ end
26
+
27
+ @displayer.banner
28
+ @displayer.display_params
29
+
30
+ @launcher_handler.handle
31
+ @ruby_copy.robocopy_interpreter
32
+
33
+ puts "Program Output Path: #{@params[:project_path]}"
34
+ puts "Thanks for using Standalone-Ruby!"
35
+ end
36
+ end
@@ -61,7 +61,7 @@ class LauncherHandler
61
61
  ruby_file = "ruby.exe"
62
62
  end
63
63
 
64
- bat_template = File.join(File.expand_path("../data/bat", __dir__), "default_bat.txt")
64
+ bat_template = File.join(File.expand_path("../data/bat-cmd", __dir__), "default_bat_cmd.txt")
65
65
  puts "Using: #{bat_template}"
66
66
 
67
67
  if File.exist?(bat_template)
@@ -18,7 +18,13 @@ class ParameterParser
18
18
  help_text = <<~EOT
19
19
  Standalone-Ruby - Make your projects installation independent!
20
20
 
21
- Usage: ruby #{$0} [options]
21
+ Usage: standalone-ruby [subcommand] [options]
22
+
23
+ Subcommands:
24
+ archive - archived default output
25
+ exe - Compressed output to exe file (will be added soon)
26
+ setup - Output converted to setup file (will be added soon)
27
+ zip - Reduced size archive output (will be added soon)
22
28
 
23
29
  Options:
24
30
  -p, --project PROJECT_PATH Target Ruby project path.
@@ -30,8 +36,8 @@ class ParameterParser
30
36
  -m, --main MAIN_FILE Path to the main Ruby file of the project.
31
37
  Ensures that the specified Ruby file exists.
32
38
 
33
- -l, --launcher LAUNCHER Launcher file name (either .vbs or .bat).
34
- Ensure the launcher file exists and is of the correct type (either .vbs or .bat).
39
+ -l, --launcher LAUNCHER Launcher file name (either .vbs or .bat-cmd).
40
+ Ensure the launcher file exists and is of the correct type (either .vbs or .bat-cmd).
35
41
 
36
42
  -t, --template TEMPLATE Template file for launcher.
37
43
  Ensures that the specified template file exists.
@@ -41,8 +47,11 @@ class ParameterParser
41
47
  A higher number of threads can speed up the process, but requires more system resources.
42
48
 
43
49
  -g, --gui This option allows the rubyw.exe file in the bin folder to be used.
50
+ You can choose it for projects that include GUI.
51
+
52
+ -h, --help Show this help message.
44
53
 
45
- -h, --help Show this help message
54
+ --version Show program version.
46
55
 
47
56
  For more details, please visit the documentation at:
48
57
  https://github.com/ardatetikbey/Standalone-Ruby
@@ -100,7 +109,7 @@ class ParameterParser
100
109
  end
101
110
  end
102
111
 
103
- opts.on("-l", "--launcher LAUNCHER", String, "Launcher file name.type (vbs or bat)") do |launcher|
112
+ opts.on("-l", "--launcher LAUNCHER", String, "Launcher file name.type (vbs or bat-cmd)") do |launcher|
104
113
  launcher.strip!
105
114
  if launcher.include?(".vbs")
106
115
  @params[:launcher] = launcher
@@ -110,6 +119,10 @@ class ParameterParser
110
119
  @params[:launcher] = launcher
111
120
  @params[:launcher_type] = "bat"
112
121
  @params[:launcher_name] = File.basename(launcher)
122
+ elsif launcher.include?(".cmd")
123
+ @params[:launcher] = launcher
124
+ @params[:launcher_type] = "cmd"
125
+ @params[:launcher_name] = File.basename(launcher)
113
126
  else
114
127
  print("Parser Error: ".red); puts("The supported launcher #{launcher} could not be found!")
115
128
  exit!
@@ -130,6 +143,11 @@ class ParameterParser
130
143
  @params[:gui] = true
131
144
  end
132
145
 
146
+ opts.on("--version") do
147
+ puts "Standalone Ruby Gem Version 1.2"
148
+ exit!
149
+ end
150
+
133
151
  opts.on("-h", "--help", "Show this help message") do
134
152
  display_help
135
153
  exit!
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standalone-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: '1.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arda Tetik
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-28 00:00:00.000000000 Z
10
+ date: 2025-04-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: Make your projects installation independent!
13
13
  email:
@@ -18,13 +18,14 @@ extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - CHANGELOG.md
21
- - README.md
22
21
  - bin/standalone-ruby
22
+ - lib/data/bat-cmd/default_bat_cmd.txt
23
23
  - lib/data/bat/default_bat.txt
24
24
  - lib/data/vbs/default_vbs.txt
25
25
  - lib/data/vbs/vbs_gui.txt
26
26
  - lib/standalone_ruby.rb
27
27
  - lib/utils/displayer.rb
28
+ - lib/utils/launcher.rb
28
29
  - lib/utils/launcher_handler.rb
29
30
  - lib/utils/logger_helper.rb
30
31
  - lib/utils/parameter_parser.rb
data/README.md DELETED
@@ -1,159 +0,0 @@
1
- # Project: Standalone Ruby
2
-
3
- ![Project Banner](images/banner.jpg)
4
-
5
- - 🔗 **GitHub:** [Project Github Link](https://github.com/ardatetikbey/Standalone-Ruby)
6
- - 🔗 **RubyGems:** [Project RubyGems Link](https://rubygems.org/gems/standalone-ruby)
7
- - 🔗 **Contact:** ardatetikruby@gmail.com
8
-
9
- ---
10
-
11
- ## Özellikler / Features / Funktionen / 機能
12
-
13
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Windows sistemlerde Ruby kurulumuna ihtiyaç duymadan Ruby ile yazdığınız projelerinizi çalıştırabilmenize olanak sağlar.
14
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> It allows you to run your projects written with Ruby on Windows systems without the need for a Ruby installation.
15
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Es ermöglicht Ihnen, Ihre mit Ruby geschriebenen Projekte auf Windows-Systemen auszuführen, ohne dass eine Ruby-Installation erforderlich ist.
16
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> これにより、Ruby をインストールしなくても、Windows システム上で Ruby で記述されたプロジェクトを実行できるようになります。
17
-
18
- ---
19
-
20
- ## Program Mantığı / Logic / Logik / 論理
21
-
22
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Bu program, Ruby yorumlayıcısının dizinini, proje klasörünü ve projenin ana dosyasının yolunu alır. Bu değerleri, seçime bağlı olarak VBS veya BAT uzantılı başlatıcı dosyanın içine uygun şekilde yerleştirir ve belirtilen Ruby yorumlayıcısını proje dizinine kopyalar. Başlatıcı dosya çalıştırıldığında, ilgili Ruby yorumlayıcısını kullanarak projenin ana dosyasını açar.
23
-
24
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/>This program takes the Ruby interpreter directory, the project folder, and the path to the project's main file. It places these values ​​appropriately in a starter file, optionally with a VBS or BAT extension, and copies the specified Ruby interpreter to the project directory. When the starter file is run, it opens the project's main file using the corresponding Ruby interpreter.
25
-
26
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Dieses Programm verwendet das Ruby-Interpreterverzeichnis, den Projektordner und den Pfad zur Hauptdatei des Projekts. Es platziert diese Werte entsprechend in einer Starterdatei, optional mit einer VBS- oder BAT-Erweiterung, und kopiert den angegebenen Ruby-Interpreter in das Projektverzeichnis. Wenn die Startdatei ausgeführt wird, öffnet sie die Hauptdatei des Projekts mithilfe des zugehörigen Ruby-Interpreters.
27
-
28
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> このプログラムは、Ruby インタープリター ディレクトリ、プロジェクト フォルダー、およびプロジェクトのメイン ファイルへのパスを受け取ります。これらの値をスターター ファイル(オプションで VBS または BAT 拡張子)に適切に配置し、指定された Ruby インタープリターをプロジェクト ディレクトリにコピーします。ランチャー ファイルが実行されると、関連付けられた Ruby インタープリターを使用してプロジェクトのメイン ファイルが開きます。
29
-
30
- ---
31
-
32
- ## Kullanım / Use / Verwenden / 使用するには
33
-
34
- ## Install:
35
-
36
- ```bash
37
- gem install standalone-ruby
38
- ```
39
-
40
- ## Example Command:
41
-
42
- ```bash
43
- standalone-ruby -p "C:/Users/User/Desktop/PRJCT" -r "C:/Users/User/Documents/Ruby34-x64" -m "C:/Users/User/Desktop/myproject/main.rb" -l launcher1.vbs -c 10
44
- ```
45
-
46
- ## Parametreler / Parameters / Parameter / パラメータ
47
-
48
- #### 1. `-p, --project PROJECT_PATH`
49
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Hedef Ruby projesinin yolunu belirtir. Verilen proje yolunun varlığını kontrol eder.
50
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> Specifies the target Ruby project path. It checks that the given project path exists.
51
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Gibt den Pfad zum Ziel-Ruby-Projekt an. Überprüft, ob der angegebene Projektpfad existiert.
52
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> ターゲット Ruby プロジェクトへのパスを指定します。指定されたプロジェクト パスが存在するかどうかを確認します。
53
-
54
- #### 2. `-r, --ruby RUBY_PATH`
55
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Ruby yorumlayıcısının yolunu tanımlar. Verilen Ruby yolunun varlığını ve içinde 'bin' dizini olup olmadığını kontrol eder.
56
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> Defines the path to the Ruby interpreter. It checks that the given Ruby path exists and contains a 'bin' directory.
57
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Definiert den Pfad zum Ruby-Interpreter. Überprüft, ob der angegebene Ruby-Pfad existiert und ob er das Verzeichnis „bin“ enthält.
58
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> Ruby インタープリターへのパスを定義します。指定された Ruby パスが存在するかどうか、またそこに 'bin' ディレクトリが含まれているかどうかを確認します。
59
-
60
- #### 3. `-m, --main MAIN_FILE`
61
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Projenin ana Ruby dosyasının yolunu belirtir. Verilen Ruby dosyasının varlığını kontrol eder.
62
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> Provides the path to the main Ruby file of the project. It ensures that the specified Ruby file exists.
63
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Gibt den Pfad zur Ruby-Hauptdatei des Projekts an. Überprüft, ob die angegebene Ruby-Datei vorhanden ist.
64
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> プロジェクトのメイン Ruby ファイルのパスを指定します。指定された Ruby ファイルの存在を確認します。
65
-
66
- #### 4. `-l, --launcher LAUNCHER`
67
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Çalıştırıcı dosyasının adını belirtir, bu dosya `.vbs` veya `.bat` formatlarında olabilir. Çalıştırıcı dosyasının varlığını ve uygun türde olduğunu kontrol eder.
68
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> Specifies the launcher file name, which can either be `.vbs` or `.bat`. It checks whether the launcher file exists and is of the correct type.
69
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Gibt den Namen der ausführbaren Datei an. Diese Datei kann „.vbs“ oder „.bat“ sein. Überprüft, ob die ausführbare Datei vorhanden ist und vom richtigen Typ ist.
70
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> 実行可能ファイルの名前を指定します。このファイルは `.vbs` または `.bat` にすることができます。実行可能ファイルが存在し、正しいタイプであることを確認します。
71
-
72
- #### 5. `-c, --threads THREADS`
73
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Kullanılacak thread sayısını belirtir. Varsayılan değer 5'tir. Bu parametre, Ruby yorumlayıcısının kopyalanma işlemi sırasında kullanılacak thread sayısını belirtir.
74
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> Specifies the number of threads to use. The default value is 5. This parameter specifies the number of threads to use during the copy operation of the Ruby interpreter.
75
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Gibt die Anzahl der zu verwendenden Threads an. Der Standardwert ist 5. Dieser Parameter gibt die Anzahl der Threads an, die während des Kopiervorgangs des Ruby-Interpreters verwendet werden sollen.
76
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> 使用するスレッドの数を指定します。デフォルト値は 5 です。このパラメータは、Ruby インタープリタのコピー プロセス中に使用されるスレッドの数を指定します。
77
-
78
- #### 6. `-h, --help`
79
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Yardım mesajını görüntüler.
80
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> Displays the help message.
81
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Zeigt die Hilfemeldung an.
82
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> ヘルプメッセージを表示します。
83
-
84
- ---
85
-
86
- ## Notlar / Notes / Anmerkungen / ノート
87
-
88
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> **Program Notları**
89
- - Sağlanan yolların geçerli ve sisteminizden erişilebilir olduğundan emin olun.
90
- - Başlatıcı dosya türü Windows sistemleri için `.vbs` veya `.bat` olmalıdır.
91
- - `threads` seçeneği kopyalama sürecinde performansı önemli ölçüde etkileyebilir, bu nedenle sisteminizin kapasitesine göre dikkatli kullanın.
92
- - Kullandığınız Ruby yorumlayıcısının çalıştıracağınız proje için bütün gem dosyalarını içerdiğinden emin olun.
93
- - Daha fazla ayrıntı için resmi [GitHub Deposu](https://github.com/ardatetikbey/Standalone-Ruby)'na bakın.
94
-
95
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> **Program Notes**
96
- - Make sure that the provided paths are valid and accessible from your system.
97
- - The launcher file type must be either `.vbs` or `.bat` for Windows systems.
98
- - The `threads` option can significantly impact performance during the copying process, so use it wisely based on your system’s capabilities.
99
- - Make sure that the Ruby interpreter you are using includes all the gem files for the project you will be running.
100
- - For more details, refer to the official [GitHub Repository](https://github.com/ardatetikbey/Standalone-Ruby).
101
-
102
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> **Programmanmerkungen**
103
- - Stellen Sie sicher, dass die angegebenen Pfade gültig und von Ihrem System zugänglich sind.
104
- - Der Typ der Startdatei muss entweder `.vbs` oder `.bat` für Windows-Systeme sein.
105
- - Die Option `threads` kann die Leistung während des Kopiervorgangs erheblich beeinflussen. Verwenden Sie sie daher entsprechend den Fähigkeiten Ihres Systems.
106
- - Stellen Sie sicher, dass der von Ihnen verwendete Ruby-Interpreter alle Gem-Dateien für das Projekt enthält, das Sie ausführen werden.
107
- - Weitere Details finden Sie im offiziellen [GitHub-Repository](https://github.com/ardatetikbey/Standalone-Ruby).
108
-
109
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> **プログラムの注意事項**
110
- - 指定されたパスが有効であり、システムからアクセス可能であることを確認してください。
111
- - ランチャーファイルの種類は、Windows システムでは `.vbs` または `.bat` である必要があります。
112
- - `threads` オプションはコピー処理中のパフォーマンスに大きな影響を与える可能性があるため、システムの能力に応じて適切に使用してください。
113
- - 使用している Ruby インタープリターに、実行するプロジェクトのすべての gem ファイルが含まれていることを確認してください。
114
- - 詳細については、公式の [GitHub リポジトリ](https://github.com/ardatetikbey/Standalone-Ruby) を参照してください。
115
-
116
- ---
117
-
118
- ## Yapılacaklar / To Do List / やるべきこと
119
-
120
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> **Yapılacaklar**
121
- - Logger Desteği - Programın çalışmasını ve hata ayıklamayı kolaylaştırmak için loglama mekanizması eklenecek.
122
- - GUI Arayüzü - Kullanıcıların daha kolay işlem yapabilmesi için basit bir grafik arayüz geliştirilecek.
123
- - Şifrelenmiş Ruby Çalıştırma - Ruby betiklerini şifreleyerek koruma sağlanacak ve çözüp çalıştırma özelliği eklenecek.
124
- - Çapraz Platform Desteği - Linux ve macOS sistemlerinde benzer bir çalışma mantığı sunacak destek eklenmesi.
125
- - Özel Çalıştırıcı Dosya Biçimleri - .vbs ve .bat dışında alternatif çalıştırıcı dosya formatları eklenmesi.
126
- - Inno Setup EXE Desteği - Proje çıktısında oluşan başlatıcı dosyanın proje dosyalarıyla beraber bir setup haline getirilmesi.
127
-
128
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> **To-Do List**
129
- - Logger Support - A logging mechanism will be added to facilitate debugging and monitoring the program’s operation.
130
- - GUI Interface - A simple graphical user interface will be developed to make it easier for users to operate.
131
- - Encrypted Ruby Execution - Ruby scripts will be encrypted for protection and will have an option to be decrypted and executed.
132
- - Cross-Platform Support - Support for running on Linux and macOS with similar functionality will be added.
133
- - Custom Execution File Formats - Alternative execution file formats will be introduced beyond .vbs and .bat.
134
- - Inno Setup EXE Support - Converting the launcher file created in the project output into a setup along with the project files.
135
-
136
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> **Aufgabenliste**
137
- - Logger-Unterstützung - Ein Logging-Mechanismus wird hinzugefügt, um die Programmausführung und das Debuggen zu erleichtern.
138
- - GUI-Oberfläche - Eine einfache grafische Benutzeroberfläche wird entwickelt, um den Benutzern die Durchführung von Aufgaben zu erleichtern.
139
- - Verschlüsselte Ruby-Ausführung - Ruby-Skripte werden zum Schutz verschlüsselt, und eine Entschlüsselungs- und Ausführungsfunktion wird hinzugefügt.
140
- - Cross-Platform-Unterstützung - Es wird Unterstützung hinzugefügt, um ähnliche Funktionen auf Linux- und macOS-Systemen bereitzustellen.
141
- - Benutzerdefinierte Launcher-Dateiformate - Es werden alternative Launcher-Dateiformate hinzugefügt, außer .vbs und .bat.
142
- - Konvertieren der in der Projektausgabe erstellten Launcher-Datei zusammen mit den Projektdateien in ein Setup.
143
-
144
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> **やることリスト**
145
- - ロガーサポート - プログラムの実行とデバッグを容易にするためにロギングメカニズムが追加されます。
146
- - GUIインターフェース - ユーザーがより簡単に作業を行えるようにシンプルなグラフィカルインターフェースが開発されます。
147
- - 暗号化されたRuby実行 - Rubyスクリプトが保護のために暗号化され、復号化して実行する機能が追加されます。
148
- - クロスプラットフォームサポート - LinuxおよびmacOSシステムで同様の機能が提供されるサポートが追加されます。
149
- - カスタムランチャーファイル形式 - .vbsおよび.bat以外の代替ランチャーファイル形式が追加されます。
150
- - プロジェクト出力で作成されたランチャー ファイルをプロジェクト ファイルとともにセットアップに変換します。
151
-
152
- ---
153
-
154
- ## Lisans / License / Lizenz / ライセンス
155
-
156
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg" width="20"/> Bu proje MIT Lisansı altında lisanslanmıştır.
157
- - <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" width="20"/> This project is licensed under the MIT License.
158
- - <img src="https://upload.wikimedia.org/wikipedia/commons/b/ba/Flag_of_Germany.svg" width="20"/> Dieses Projekt ist unter der MIT-Lizenz lizenziert.
159
- - <img src="https://upload.wikimedia.org/wikipedia/en/9/9e/Flag_of_Japan.svg" width="20"/> このプロジェクトはMITライセンスの下でライセンスされています。