trek 2.0.0 → 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 +4 -4
- data/AGENTS.md +1 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/trek/version.rb +1 -1
- data/package.json +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36520ed5aaf6b1c69a1b34ffc8d2bf89bf225c0548edbb62909edf18fa54c16a
|
|
4
|
+
data.tar.gz: '05296e71c1df00a73fe624ac48e5c0631f048480c643fe01a194c077405bed16'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 796b4ecad9967d6d800ba0ffe37bd3b0e9eb51bbcbfe9d27c1c9e95a0ea6b7393561edf423dfdc2dcf16fda0402097bd83e9a30b2cacf3588133bdf66526502e
|
|
7
|
+
data.tar.gz: 791afe1a759ffe45012cd98c6d49bf766d72233b65d8b51106eb77a9bd11a1fb45f3fe2a7a2d4247ebf5209807d46094494b3745d94d282a3f811553aac6a05a
|
data/AGENTS.md
CHANGED
|
@@ -4,7 +4,7 @@ Guidance for AI coding agents working in this repository. Keep it accurate — u
|
|
|
4
4
|
|
|
5
5
|
## What is Trek
|
|
6
6
|
|
|
7
|
-
Trek is a customizable CMS for Ruby on Rails, shipped as a **Ruby gem** (`trek`) plus a companion **NPM package** (
|
|
7
|
+
Trek is a customizable CMS for Ruby on Rails, shipped as a **Ruby gem** (`trek`) plus a companion **NPM package** (`trek`). It's a Rails **engine** (`lib/trek/engine.rb`) that installs a back-office/admin into a host app. Installation and features are driven by Rails generators (`rails g trek:install`, `trek:scaffold`, `trek:admin:user`, …). Authored by Etamin Studio. Distributed publicly: the gem on [RubyGems](https://rubygems.org/gems/trek), the npm package on [npmjs.com](https://www.npmjs.com/package/trek); the source repository stays private on self-hosted GitLab (`git.etamin.studio`).
|
|
8
8
|
|
|
9
9
|
## Tech stack
|
|
10
10
|
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [2.0.1] - 2026-08-18
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- The npm tarball ships `vendor/` again: the 2.0.0 slimming dropped it, but the three select form components (`collection_select`, `grouped_collection_select`, `link_select`) import `vendor/tom_select/css/tom-select.custom.css` from their JS sidecars, so host-app esbuild builds failed with "Could not resolve" errors.
|
|
8
|
+
- `AGENTS.md` now describes the public distribution (RubyGems + npmjs.com, npm package renamed to `trek`) instead of the retired private GitLab packages.
|
|
9
|
+
|
|
3
10
|
## [2.0.0] - 2026-08-18
|
|
4
11
|
|
|
5
12
|
### Changed
|
data/Gemfile.lock
CHANGED
data/lib/trek/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trek",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "A modern content management & back-office system for Ruby on Rails",
|
|
5
5
|
"homepage": "https://trek.etamin.studio",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"app/assets/stylesheets/**",
|
|
12
12
|
"app/components/**/*.js",
|
|
13
13
|
"app/components/**/*.css",
|
|
14
|
-
"app/javascript/**"
|
|
14
|
+
"app/javascript/**",
|
|
15
|
+
"vendor/**"
|
|
15
16
|
],
|
|
16
17
|
"repository": {
|
|
17
18
|
"type": "git",
|