relay.app 0.1.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/lib/relay/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d92f0c660a85df76af61a45c752964c63ae5b052012542414c26f8a6ff93c734
|
|
4
|
+
data.tar.gz: 5f6f2f6ef2cf3875205b92edff9d0ea5118ff3f6c86e68148a4d50993174d73e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 811e4fa67e7026b4e27f59c427f35c2f14f32a1604bfaa44e31c8f38387bce78016d663e58c610534d8a949d412a33bb92006e1050834bbf728eb1702ed57f95
|
|
7
|
+
data.tar.gz: 88e0e6087687685ba38fecdcf9ddba1885bf48ef44a9e2f46a56390ac4642ee0c6f70d59337fe98e3e3fd18f314fc352cb1f4c5ee249134f78a7d60e68b43267
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## v0.2.0
|
|
6
|
+
|
|
7
|
+
Gem packaging and installation release.
|
|
8
|
+
|
|
9
|
+
### Change
|
|
10
|
+
|
|
11
|
+
* **Refine gem packaging and release metadata** <br>
|
|
12
|
+
Tighten the packaged file list to runtime assets and application code,
|
|
13
|
+
and refresh the gem summary and description to position Relay as a
|
|
14
|
+
self-hostable LLM environment you can get running in under 2 minutes.
|
|
15
|
+
|
|
16
|
+
### Fix
|
|
17
|
+
|
|
18
|
+
* **Compile the dark theme into `application.css`** <br>
|
|
19
|
+
Include the dark theme in the main stylesheet and remove the dead
|
|
20
|
+
`/themes/*` runtime path so packaged gem installs no longer depend on
|
|
21
|
+
source CSS files under `app/assets`.
|
|
22
|
+
|
|
3
23
|
## v0.1.0
|
|
4
24
|
|
|
5
25
|
First stable release.
|
data/lib/relay/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: relay.app
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antar Azri
|
|
@@ -304,7 +304,9 @@ dependencies:
|
|
|
304
304
|
- - ">="
|
|
305
305
|
- !ruby/object:Gem::Version
|
|
306
306
|
version: '0'
|
|
307
|
-
description: Relay is a
|
|
307
|
+
description: Relay is a self-hostable LLM environment built on llm.rb that you can
|
|
308
|
+
set up and get running in under 2 minutes. Extend it with your own tools, connect
|
|
309
|
+
MCP servers, and run an AI workspace on your own infrastructure.
|
|
308
310
|
email:
|
|
309
311
|
- azantar@proton.me
|
|
310
312
|
- 0x1eef@hardenedbsd.org
|
|
@@ -461,5 +463,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
461
463
|
requirements: []
|
|
462
464
|
rubygems_version: 3.6.9
|
|
463
465
|
specification_version: 4
|
|
464
|
-
summary: Self-
|
|
466
|
+
summary: Self-hostable LLM environment you can run in under 2 minutes
|
|
465
467
|
test_files: []
|