trek 0.1.27 → 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: 53eb1b618fd47d1aaba94f028d33ff91a4ae1361184149f0ac51a3530392d5db
4
- data.tar.gz: 772ce6d84a6f4e05eec679089a7428049119b2c178f930a5e9934424d2465717
3
+ metadata.gz: 36520ed5aaf6b1c69a1b34ffc8d2bf89bf225c0548edbb62909edf18fa54c16a
4
+ data.tar.gz: '05296e71c1df00a73fe624ac48e5c0631f048480c643fe01a194c077405bed16'
5
5
  SHA512:
6
- metadata.gz: 4f866c4a665ed0cdd1101385a86edf1264b07b5810e41c5e48399ede3bb25e95912f5b8a0c1153089361b61f4aa535bbced16f2f30d4724a53f78c75bf747faf
7
- data.tar.gz: 6f9ad9c66a64db021d848dadaf8d6c485497d1e6b49683c01d09623a4c0640a46ce9b2493c5bf2864fd43ebea13f1cef12ce617b10268be516d63e670cd8716e
6
+ metadata.gz: 796b4ecad9967d6d800ba0ffe37bd3b0e9eb51bbcbfe9d27c1c9e95a0ea6b7393561edf423dfdc2dcf16fda0402097bd83e9a30b2cacf3588133bdf66526502e
7
+ data.tar.gz: 791afe1a759ffe45012cd98c6d49bf766d72233b65d8b51106eb77a9bd11a1fb45f3fe2a7a2d4247ebf5209807d46094494b3745d94d282a3f811553aac6a05a
data/.yarnrc.yml CHANGED
@@ -1,11 +1,5 @@
1
1
  nodeLinker: node-modules
2
2
 
3
- npmScopes:
4
- etaminstudio:
5
- npmAlwaysAuth: true
6
- npmAuthToken: "${NPM_AUTH_TOKEN-fallback}"
7
- npmPublishRegistry: "https://git.etamin.studio/api/v4/projects/229/packages/npm/"
8
-
9
3
  plugins:
10
4
  - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
11
5
  spec: "@yarnpkg/plugin-interactive-tools"
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,22 @@
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
+
10
+ ## [2.0.0] - 2026-08-18
11
+
12
+ ### Changed
13
+
14
+ - Trek's packages are now **public-only** (#197): the gem is consumed from [RubyGems](https://rubygems.org/gems/trek) and the npm package — renamed from `@etaminstudio/trek` to the unscoped [`trek`](https://www.npmjs.com/package/trek) — is published to npmjs.com. Nothing is published to the private GitLab registries any more, and no deploy token is needed. Because the previous owner of the npm `trek` name had already published versions up to `1.0.0` (npm never frees version numbers), Trek jumps straight to **2.0.0**, keeping gem and npm versions in lockstep. **Upgrade note:** existing apps upgrade by moving to 0.1.27 first, then running `rails g trek:upgrade:v2` (see 0.1.27's changelog entry) — the generator now also adds the `npmPreapprovedPackages` exemption below. Afterwards, remove the now-unneeded CI variables — `NPM_AUTH_TOKEN` and `BUNDLE_GIT__ETAMIN__STUDIO` (spelled `BUNDLE_GIT__ETAMINSTUD__IO` on apps created before the domain migration) — along with any local `TREK_DEPLOY_TOKEN` export, and revoke the project's Trek deploy token on GitLab.
15
+ - `trek:install` now wires new apps to the public packages: the generated `package.json` depends on `trek`, the JS entrypoint imports `"trek"`, and the generated `.yarnrc.yml` no longer configures the GitLab registry/scope — instead it lists `trek` under `npmPreapprovedPackages`, exempting it from Yarn's package gates (minimal age, …) so fresh releases install without the quarantine delay.
16
+ - The published npm tarball now only contains what host apps consume — `app/javascript`, `app/assets/{icons,images,stylesheets}` and the components' JS/CSS sidecars — instead of the whole repository (Ruby engine code, specs, docs, local config…).
17
+ - Package metadata refresh for the public listings: description "A modern content management & back-office system for Ruby on Rails" and homepage <https://trek.etamin.studio> on both the gemspec and `package.json`, plus an explicit MIT license on both.
18
+ - `make release` now publishes the npm package with `npm publish` (requires `npm login` as a `trek` maintainer) instead of `yarn npm publish` to the GitLab registry.
19
+
3
20
  ## [0.1.27] - 2026-08-18
4
21
 
5
22
  ### Added
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trek (0.1.27)
4
+ trek (2.0.1)
5
5
  action_policy (~> 0.6)
6
6
  actioncable
7
7
  acts_as_list (~> 1.1)
data/Makefile CHANGED
@@ -10,7 +10,7 @@ release:
10
10
  git add -A; \
11
11
  git commit -m "Version $$version"; \
12
12
  bundle exec rake release; \
13
- yarn npm publish
13
+ npm publish
14
14
 
15
15
  audit-fix:
16
16
  @out=$$(bundle exec bundle-audit check --update 2>&1); \
data/README.md CHANGED
@@ -7,8 +7,8 @@ Trek is a modern content management system for Ruby on Rails, that is designed t
7
7
  - Rails 7.0+
8
8
  - Ruby 3.1+
9
9
  - PostgreSQL 12+
10
- - Node 20+
11
- - Yarn 3.x
10
+ - Node 22+
11
+ - Yarn 4.x
12
12
  - libvips
13
13
 
14
14
  ### Dependencies
@@ -32,19 +32,19 @@ You don't have to set them up yourself, but you can customize their configuratio
32
32
  Make sure your default Rails version is 7.0+
33
33
 
34
34
  $ rails -v
35
- Rails 7.1.3
35
+ Rails 8.1.3
36
36
 
37
37
  If not, run `gem install rails` to upgrade.
38
38
 
39
- Make sure your default Yarn version is 3.x
39
+ Make sure your default Yarn version is 4.x
40
40
 
41
41
  $ yarn -v
42
- 3.8.0
42
+ 4.17.0
43
43
 
44
44
  If not, run:
45
45
 
46
46
  corepack enable
47
- corepack install --global yarn@3
47
+ corepack install --global yarn@4
48
48
 
49
49
  Create your Rails project (replace `helloworld` with your own project name):
50
50
 
@@ -52,31 +52,11 @@ Create your Rails project (replace `helloworld` with your own project name):
52
52
  rails new $TREK_PROJECT_NAME -j esbuild -d postgresql --skip-action-mailbox --skip-action-text --skip-action-cable --skip-active-storage --skip-jbuilder --skip-test --skip-system-test
53
53
  cd $TREK_PROJECT_NAME
54
54
 
55
- [Create a deploy token](https://git.etamin.studio/etaminstudio/trek/-/settings/repository#js-deploy-tokens) associated to Trek project:
56
-
57
- - Name: `helloworld` (replace with your project name)
58
- - Username: `helloworld` (replace with your project name)
59
- - Scopes: `read_repository`, `read_package_registry`
60
-
61
- Copy the generated token to an ENV variable (replace `XXXXXXXXXXX` with the token generated by Gitlab):
62
-
63
- export TREK_DEPLOY_TOKEN=XXXXXXXXXXX
64
-
65
55
  ### Install the gem
66
56
 
67
- Add this deploy token to your project local config:
68
-
69
- bundle config git.etamin.studio $TREK_PROJECT_NAME:$TREK_DEPLOY_TOKEN
70
-
71
- Install the gem and add it to the application's Gemfile by running:
72
-
73
- bundle add trek --git https://git.etamin.studio/etaminstudio/trek.git --branch main
57
+ Trek is distributed publicly: the gem on [RubyGems](https://rubygems.org/gems/trek) and the [`trek` npm package](https://www.npmjs.com/package/trek) on npmjs.com (the installer adds the latter to your `package.json`). Install the gem and add it to the application's Gemfile by running:
74
58
 
75
- ### Install the NPM package
76
-
77
- Prepare the NPM package installation by running:
78
-
79
- export NPM_AUTH_TOKEN=$TREK_DEPLOY_TOKEN
59
+ bundle add trek
80
60
 
81
61
  ### Run the installer
82
62
 
@@ -134,8 +114,8 @@ The title and subtitle are customizable in the locales, with the following keys:
134
114
  en:
135
115
  admin:
136
116
  brand:
137
- title: My project
138
- subtitle: Back-office
117
+ title: My project
118
+ subtitle: Back-office
139
119
  ```
140
120
 
141
121
  ### Useful commands
@@ -146,18 +126,6 @@ Customize the credentials with `ADMIN_EMAIL` and `ADMIN_PASSWORD` ENV variables
146
126
 
147
127
  rails g trek:admin:user
148
128
 
149
- ## CI setup
150
-
151
- ### Gitlab
152
-
153
- Once your project is created on Gitlab, go to `Settings` > `CI/CD` > `Variables` > `Add variable` and use these values:
154
-
155
- - Key: `BUNDLE_GIT__ETAMINSTUD__IO`
156
- - Value: `helloworld:YOUR_DEPLOY_TOKEN` (replace with your project name)
157
-
158
- - Key: `NPM_AUTH_TOKEN`
159
- - Value: `YOUR_DEPLOY_TOKEN`
160
-
161
129
  ## Development
162
130
 
163
131
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -196,7 +164,7 @@ When you're done, disable the local version:
196
164
 
197
165
  Don't forget to revert to a released verion in your `Gemfile`:
198
166
 
199
- gem "trek", "~> 0.1"
167
+ gem "trek", "~> 2.0"
200
168
 
201
169
  #### Linking to the local NPM package with Yarn
202
170
 
@@ -229,4 +197,4 @@ This will:
229
197
  3. Run `bundle` to update the lockfile
230
198
  4. Commit all changes with message "Version X.Y.Z"
231
199
  5. Run `bundle exec rake release` (creates git tag, pushes commits/tag, pushes gem to [rubygems.org](https://rubygems.org))
232
- 6. Run `yarn npm publish` (publishes the npm package). This requires a [personal token](https://git.etamin.studio/-/user_settings/personal_access_tokens) with the `api` scope to be present in `NPM_AUTH_TOKEN`,
200
+ 6. Run `npm publish` (publishes the [npm package](https://www.npmjs.com/package/trek) to npmjs.com). This requires being logged in to npmjs (`npm login`) as a maintainer of the `trek` package.
@@ -9,8 +9,8 @@ Make sure the following are installed:
9
9
  - Ruby 3.1+
10
10
  - Rails 7.0+
11
11
  - PostgreSQL 12+
12
- - Node 20+
13
- - Yarn 3.x
12
+ - Node 22+
13
+ - Yarn 4.x
14
14
  - libvips
15
15
 
16
16
  Check your Rails version:
@@ -27,11 +27,11 @@ Check your Yarn version:
27
27
  yarn -v
28
28
  ```
29
29
 
30
- If it's not a 3.x version, run:
30
+ If it's not a 4.x version, run:
31
31
 
32
32
  ```sh
33
33
  corepack enable
34
- corepack install --global yarn@3
34
+ corepack install --global yarn@4
35
35
  ```
36
36
 
37
37
  ## Create your Rails project
@@ -46,38 +46,12 @@ rails new $TREK_PROJECT_NAME -j esbuild -d postgresql \
46
46
  cd $TREK_PROJECT_NAME
47
47
  ```
48
48
 
49
- ## Get access to Trek
50
-
51
- Trek is distributed as a gem and an NPM package from Etamin Studio's GitLab. [Create a deploy token](https://git.etamin.studio/etaminstudio/trek/-/settings/repository#js-deploy-tokens) associated to the Trek project:
52
-
53
- - **Name**: your project name (e.g. `helloworld`)
54
- - **Username**: your project name (e.g. `helloworld`)
55
- - **Scopes**: `read_repository`, `read_package_registry`
56
-
57
- Export the generated token (replace `XXXXXXXXXXX`):
58
-
59
- ```sh
60
- export TREK_DEPLOY_TOKEN=XXXXXXXXXXX
61
- ```
62
-
63
49
  ## Install the gem
64
50
 
65
- Add the deploy token to your project's local Bundler config:
66
-
67
- ```sh
68
- bundle config git.etamin.studio $TREK_PROJECT_NAME:$TREK_DEPLOY_TOKEN
69
- ```
70
-
71
- Install the gem and add it to your `Gemfile`:
72
-
73
- ```sh
74
- bundle add trek --git https://git.etamin.studio/etaminstudio/trek.git --branch main
75
- ```
76
-
77
- Prepare the NPM package installation:
51
+ Trek is distributed publicly: the gem on [RubyGems](https://rubygems.org/gems/trek) and the [`trek` npm package](https://www.npmjs.com/package/trek) on npmjs.com (the installer adds the latter to your `package.json`). Install the gem and add it to your `Gemfile`:
78
52
 
79
53
  ```sh
80
- export NPM_AUTH_TOKEN=$TREK_DEPLOY_TOKEN
54
+ bundle add trek
81
55
  ```
82
56
 
83
57
  ## Run the installer
@@ -14,7 +14,7 @@ module Trek
14
14
  def add_admin_js
15
15
  create_file "app/javascript/admin.js",
16
16
  <<~JS
17
- import "@etaminstudio/trek";
17
+ import "trek";
18
18
  JS
19
19
  end
20
20
 
@@ -55,17 +55,11 @@ module Trek
55
55
  <<~YAML
56
56
  nodeLinker: node-modules
57
57
 
58
- npmRegistries:
59
- //git.etamin.studio/api/v4/packages/npm:
60
- npmAlwaysAuth: true
61
- npmAuthToken: "${NPM_AUTH_TOKEN-fallback}"
62
-
63
- npmScopes:
64
- etaminstudio:
65
- npmRegistryServer: "https://git.etamin.studio/api/v4/packages/npm"
66
- # Our own registry — skip Yarn's minimal-age gate so a freshly
67
- # published Trek release installs without the quarantine delay.
68
- npmMinimalAgeGate: 0
58
+ # Trek is our own package — exempt it from Yarn's package gates
59
+ # (minimal age, …) so a freshly published release installs without
60
+ # the quarantine delay.
61
+ npmPreapprovedPackages:
62
+ - trek
69
63
  YAML
70
64
  end
71
65
 
@@ -27,10 +27,10 @@ This is a Ruby on Rails application whose back-office/admin is built with **Trek
27
27
 
28
28
  ## Upgrading Trek
29
29
 
30
- **Whenever you bump the `trek` gem — and its companion `@etaminstudio/trek` npm package — always:**
30
+ **Whenever you bump the `trek` gem — and its companion `trek` npm package — always:**
31
31
 
32
32
  1. **Read Trek's `CHANGELOG.md`** for every version between the installed and target version, not just the latest.
33
33
  2. **Apply every "Upgrade note".** These are the manual steps host apps must perform (config tweaks, new initializers, regenerated files, data migrations). Do not skip them — the upgrade is not complete until each is applied.
34
34
  3. **Remove now-redundant local code.** Where the changelog says a Trek change lets host apps drop or simplify a local patch, monkey-patch, or custom implementation, delete that code as part of the upgrade.
35
- 4. **Keep versions aligned**: the `trek` gem version and the `@etaminstudio/trek` npm version must match.
35
+ 4. **Keep versions aligned**: the `trek` gem version and the `trek` npm version must match.
36
36
  5. **Verify**: run `make lint` and `make test` before committing the upgrade.
@@ -2,9 +2,9 @@
2
2
  "name": "<%= application_name.downcase %>",
3
3
  "private": true,
4
4
  "dependencies": {
5
- "@etaminstudio/trek": "^<%= Trek::VERSION %>",
6
5
  "@hotwired/stimulus": "^3.2.2",
7
- "@hotwired/turbo-rails": "^8.0.0"
6
+ "@hotwired/turbo-rails": "^8.0.0",
7
+ "trek": "^<%= Trek::VERSION %>"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "node esbuild.config.js"
@@ -66,6 +66,20 @@ module Trek
66
66
  "and the etaminstudio scope manually.", :yellow
67
67
  end
68
68
 
69
+ def preapprove_npm_package
70
+ return unless File.exist?(".yarnrc.yml")
71
+ return if File.read(".yarnrc.yml").include?("npmPreapprovedPackages")
72
+
73
+ append_to_file ".yarnrc.yml", <<~YAML
74
+
75
+ # Trek is our own package — exempt it from Yarn's package gates
76
+ # (minimal age, …) so a freshly published release installs without
77
+ # the quarantine delay.
78
+ npmPreapprovedPackages:
79
+ - trek
80
+ YAML
81
+ end
82
+
69
83
  def install_npm_package
70
84
  install_npm_dependencies({ "trek" => NPM_REQUIREMENT })
71
85
  end
@@ -77,8 +91,11 @@ module Trek
77
91
 
78
92
  Manual follow-ups:
79
93
  * Remove the NPM_AUTH_TOKEN variable and the Bundler credentials for
80
- git.etamin.studio (BUNDLE_GIT__ETAMIN__STUDIO) from your CI settings.
81
- * Once every app is migrated, revoke the Trek deploy token on GitLab.
94
+ git.etamin.studio (BUNDLE_GIT__ETAMIN__STUDIO spelled
95
+ BUNDLE_GIT__ETAMINSTUD__IO on apps created before the domain
96
+ migration) from your CI settings, and drop any local
97
+ TREK_DEPLOY_TOKEN export.
98
+ * Revoke this project's Trek deploy token on GitLab.
82
99
  SUMMARY
83
100
  end
84
101
  end
data/lib/trek/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Trek
4
- VERSION = "0.1.27"
4
+ VERSION = "2.0.1"
5
5
  end
data/package.json CHANGED
@@ -1,8 +1,19 @@
1
1
  {
2
- "name": "@etaminstudio/trek",
3
- "version": "0.1.27",
4
- "description": "A modern CMS for Ruby on Rails",
2
+ "name": "trek",
3
+ "version": "2.0.1",
4
+ "description": "A modern content management & back-office system for Ruby on Rails",
5
+ "homepage": "https://trek.etamin.studio",
6
+ "license": "MIT",
5
7
  "main": "app/javascript/trek.js",
8
+ "files": [
9
+ "app/assets/icons/**",
10
+ "app/assets/images/**",
11
+ "app/assets/stylesheets/**",
12
+ "app/components/**/*.js",
13
+ "app/components/**/*.css",
14
+ "app/javascript/**",
15
+ "vendor/**"
16
+ ],
6
17
  "repository": {
7
18
  "type": "git",
8
19
  "url": "git@git.etamin.studio:etaminstudio/trek.git"
data/trek.gemspec CHANGED
@@ -8,13 +8,13 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Mohamed Bengrich", "Hugo Chantelauze", "Lucas Heymès", "Hans Lemuet"]
9
9
  spec.email = ["team@etamin.studio"]
10
10
 
11
- spec.summary = "A modern CMS for Ruby on Rails"
12
- spec.homepage = "https://etamin.studio"
11
+ spec.summary = "A modern content management & back-office system for Ruby on Rails"
12
+ spec.homepage = "https://trek.etamin.studio"
13
+ spec.license = "MIT"
13
14
  spec.required_ruby_version = ">= 3.1.0"
14
15
 
15
16
  spec.metadata["homepage_uri"] = spec.homepage
16
- # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
17
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
17
+ spec.metadata["documentation_uri"] = spec.homepage
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
data/yarn.lock CHANGED
@@ -877,52 +877,6 @@ __metadata:
877
877
  languageName: node
878
878
  linkType: hard
879
879
 
880
- "@etaminstudio/trek@workspace:.":
881
- version: 0.0.0-use.local
882
- resolution: "@etaminstudio/trek@workspace:."
883
- dependencies:
884
- "@hotwired/stimulus": ^3.2.2
885
- "@hotwired/turbo-rails": ^8.0.20
886
- "@radix-ui/colors": ^3.0.0
887
- "@tiptap/core": ^2.1.11
888
- "@tiptap/extension-floating-menu": ^2.1.11
889
- "@tiptap/extension-link": ^2.1.11
890
- "@tiptap/extension-placeholder": ^2.1.11
891
- "@tiptap/pm": ^2.1.11
892
- "@tiptap/starter-kit": ^2.1.11
893
- "@uppy/core": ^3.0.4
894
- "@uppy/locales": ^3.0.1
895
- "@uppy/thumbnail-generator": ^3.0.2
896
- "@uppy/xhr-upload": ^3.0.4
897
- esbuild: ^0.28.0
898
- esbuild-rails: ^1.0.7
899
- esbuild-style-plugin: ^1.6.3
900
- eslint: ^8.49.0
901
- eslint-config-prettier: ^8.10.2
902
- hotkeys-js: ^3.13.15
903
- normalize.css: ^8.0.1
904
- postcss: ^8.4.30
905
- postcss-cli: ^10.1.0
906
- postcss-flexbugs-fixes: ^5.0.2
907
- postcss-import: ^15.1.0
908
- postcss-inline-svg: ^5.0.0
909
- postcss-modules: ^5.0.0
910
- postcss-nesting: ^10.2.0
911
- postcss-preset-env: ^7.8.3
912
- postcss-url: ^10.1.3
913
- prettier: 2.8.8
914
- slugify: ^1.6.6
915
- sortablejs: ^1.15.6
916
- stimulus-use: ^0.52.3
917
- stylelint: ^15.11.0
918
- stylelint-config-standard: ^31.0.0
919
- stylelint-order: ^6.0.4
920
- tom-select: ^2.2.2
921
- vitepress: ^1.6.4
922
- vitepress-plugin-llms: ^1.13.1
923
- languageName: unknown
924
- linkType: soft
925
-
926
880
  "@hotwired/stimulus@npm:^3.2.2":
927
881
  version: 3.2.2
928
882
  resolution: "@hotwired/stimulus@npm:3.2.2"
@@ -6653,6 +6607,52 @@ __metadata:
6653
6607
  languageName: node
6654
6608
  linkType: hard
6655
6609
 
6610
+ "trek@workspace:.":
6611
+ version: 0.0.0-use.local
6612
+ resolution: "trek@workspace:."
6613
+ dependencies:
6614
+ "@hotwired/stimulus": ^3.2.2
6615
+ "@hotwired/turbo-rails": ^8.0.20
6616
+ "@radix-ui/colors": ^3.0.0
6617
+ "@tiptap/core": ^2.1.11
6618
+ "@tiptap/extension-floating-menu": ^2.1.11
6619
+ "@tiptap/extension-link": ^2.1.11
6620
+ "@tiptap/extension-placeholder": ^2.1.11
6621
+ "@tiptap/pm": ^2.1.11
6622
+ "@tiptap/starter-kit": ^2.1.11
6623
+ "@uppy/core": ^3.0.4
6624
+ "@uppy/locales": ^3.0.1
6625
+ "@uppy/thumbnail-generator": ^3.0.2
6626
+ "@uppy/xhr-upload": ^3.0.4
6627
+ esbuild: ^0.28.0
6628
+ esbuild-rails: ^1.0.7
6629
+ esbuild-style-plugin: ^1.6.3
6630
+ eslint: ^8.49.0
6631
+ eslint-config-prettier: ^8.10.2
6632
+ hotkeys-js: ^3.13.15
6633
+ normalize.css: ^8.0.1
6634
+ postcss: ^8.4.30
6635
+ postcss-cli: ^10.1.0
6636
+ postcss-flexbugs-fixes: ^5.0.2
6637
+ postcss-import: ^15.1.0
6638
+ postcss-inline-svg: ^5.0.0
6639
+ postcss-modules: ^5.0.0
6640
+ postcss-nesting: ^10.2.0
6641
+ postcss-preset-env: ^7.8.3
6642
+ postcss-url: ^10.1.3
6643
+ prettier: 2.8.8
6644
+ slugify: ^1.6.6
6645
+ sortablejs: ^1.15.6
6646
+ stimulus-use: ^0.52.3
6647
+ stylelint: ^15.11.0
6648
+ stylelint-config-standard: ^31.0.0
6649
+ stylelint-order: ^6.0.4
6650
+ tom-select: ^2.2.2
6651
+ vitepress: ^1.6.4
6652
+ vitepress-plugin-llms: ^1.13.1
6653
+ languageName: unknown
6654
+ linkType: soft
6655
+
6656
6656
  "trim-lines@npm:^3.0.0":
6657
6657
  version: 3.0.1
6658
6658
  resolution: "trim-lines@npm:3.0.1"
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: 0.1.27
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mohamed Bengrich
@@ -951,10 +951,12 @@ files:
951
951
  - trek.gemspec
952
952
  - vendor/tom_select/css/tom-select.custom.css
953
953
  - yarn.lock
954
- homepage: https://etamin.studio
955
- licenses: []
954
+ homepage: https://trek.etamin.studio
955
+ licenses:
956
+ - MIT
956
957
  metadata:
957
- homepage_uri: https://etamin.studio
958
+ homepage_uri: https://trek.etamin.studio
959
+ documentation_uri: https://trek.etamin.studio
958
960
  rdoc_options: []
959
961
  require_paths:
960
962
  - lib
@@ -971,5 +973,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
971
973
  requirements: []
972
974
  rubygems_version: 4.0.16
973
975
  specification_version: 4
974
- summary: A modern CMS for Ruby on Rails
976
+ summary: A modern content management & back-office system for Ruby on Rails
975
977
  test_files: []