tusktsk 2.0.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 +7 -0
- data/CHANGELOG.md +38 -0
- data/LICENSE +14 -0
- data/README.md +759 -0
- data/cli/main.rb +1488 -0
- data/exe/tsk +10 -0
- data/lib/peanut_config.rb +621 -0
- data/lib/tusk/license.rb +303 -0
- data/lib/tusk/protection.rb +180 -0
- data/lib/tusk_lang/shell_storage.rb +104 -0
- data/lib/tusk_lang/tsk.rb +501 -0
- data/lib/tusk_lang/tsk_parser.rb +234 -0
- data/lib/tusk_lang/tsk_parser_enhanced.rb +563 -0
- data/lib/tusk_lang/version.rb +5 -0
- data/lib/tusk_lang.rb +14 -0
- metadata +249 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 174e087c3e0c5d563ed8c91693bda31a20d8a79d5f4dc32b1b2f1feb8635beb3
|
4
|
+
data.tar.gz: 30506e2738fbcd006737261c417c2cb3663a741b76847bfd658ac974944f68e8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8089fc28995c6b01c31641407fcdeebad8951e5deb0e848b9534c775e21cea90999660d8e114357b041bafcad397c170012fe4fbe2ceb6a64ad0fc5202f1e626
|
7
|
+
data.tar.gz: 22b17bd3fceccae15215e3cf9ba0082fdcd339ba716126573a3c589cd7fb271ff952abef02cd7ece4b8e71d90f9daec3ca879682c90b0f99ac4a0e6e6fa24436
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
|
+
|
8
|
+
## [2.0.0] - 2025-01-15
|
9
|
+
|
10
|
+
### Added
|
11
|
+
- Complete rewrite with enhanced @ operator system
|
12
|
+
- Support for flexible syntax styles (INI, JSON, XML)
|
13
|
+
- Binary compilation to .pnt format for 85% performance boost
|
14
|
+
- Cross-file configuration with peanut system
|
15
|
+
- Machine learning integration with @learn and @optimize
|
16
|
+
- 50+ CLI commands for development and deployment
|
17
|
+
- Type validation and schema support
|
18
|
+
- Hot-reload with file watching
|
19
|
+
- FUJSEN executable functions in configuration
|
20
|
+
|
21
|
+
### Changed
|
22
|
+
- Breaking API changes from v1.x
|
23
|
+
- Improved parser with better error messages
|
24
|
+
- Enhanced @ operator capabilities
|
25
|
+
- Restructured SDK organization
|
26
|
+
|
27
|
+
### Security
|
28
|
+
- Enhanced input validation
|
29
|
+
- Secure @ operator execution
|
30
|
+
- Protection against code injection
|
31
|
+
|
32
|
+
## [1.0.0] - 2024-12-01
|
33
|
+
|
34
|
+
### Added
|
35
|
+
- Initial release of TuskLang
|
36
|
+
- Basic .tsk file parsing
|
37
|
+
- Core @ operators
|
38
|
+
- Multi-language SDK support
|
data/LICENSE
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
BBL (Balanced Benefit License) - Version 1.0
|
2
|
+
|
3
|
+
Copyright (c) 2024-2025 CyberBoost LLC. All rights reserved.
|
4
|
+
|
5
|
+
This software is licensed under the BBL (Balanced Benefit License).
|
6
|
+
|
7
|
+
SUMMARY:
|
8
|
+
- Free for small entities (under $100K annual revenue)
|
9
|
+
- Commercial license required for larger organizations
|
10
|
+
- Contributors may receive profit sharing
|
11
|
+
|
12
|
+
For complete license terms, visit: https://tusklang.org/license
|
13
|
+
|
14
|
+
Contact: hello@tusklang.org
|