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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae0f648a6ca1125a784ae4d052017885274c6b8856eeba469b59eba1e5af8809
4
- data.tar.gz: cfe7b5cf820ed4a86d519217d1f4d5a226f8a76a90edbb247d2eca9ec69c9a15
3
+ metadata.gz: 36520ed5aaf6b1c69a1b34ffc8d2bf89bf225c0548edbb62909edf18fa54c16a
4
+ data.tar.gz: '05296e71c1df00a73fe624ac48e5c0631f048480c643fe01a194c077405bed16'
5
5
  SHA512:
6
- metadata.gz: b7bba7c7c0afc04dcbcd2413395977cf9521ef35ae433a2799292d3ae3525cb2d5a27f3d5a99c726145e5b2890455302c620adbd8405b823cca00eddeb46b721
7
- data.tar.gz: 06e1be7336b7c5464d9cbcc0beffadba2a20c742fe40735f06c7cced96a28b326d1ec08f3ebc1581dc31b2e6761f3d7d617c69a96b72ef0b921b35ceb1f18b4b
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** (`@etaminstudio/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. Private gem hosted on self-hosted GitLab (`git.etamin.studio`), not public RubyGems.
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trek (2.0.0)
4
+ trek (2.0.1)
5
5
  action_policy (~> 0.6)
6
6
  actioncable
7
7
  acts_as_list (~> 1.1)
data/lib/trek/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Trek
4
- VERSION = "2.0.0"
4
+ VERSION = "2.0.1"
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trek",
3
- "version": "2.0.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",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trek
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mohamed Bengrich