hokipoki 0.8.4 → 0.8.5
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/lib/generators/hokipoki/install_generator.rb +21 -20
- data/lib/hokipoki/version.rb +1 -1
- 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: 1e6282c9c1b0a50ca6c78f7c19ef2268ab213738fb539ae497c10a9bb6ea14a1
|
|
4
|
+
data.tar.gz: ade8ac41a2d503c2a46bfd68e418ff4b233e4d3cd00a31a19f2311c18e102c6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81ed67ae4dcff72c7d43d169785bbc81320a6bc19c9cd89bb05a74ab95239bb0db521e46b92c7f0a39a4f88ce4f1ef4d4a845a7d76944c1f2b8bcaeae50da46a
|
|
7
|
+
data.tar.gz: 9f66a3118b48c98f06e6242fc116f4d7e633c4ca2ac5f0e2cd5a672346873415f04ee2891d4bc1fb38c1ec90a2768d8c3704e48637095273ac9659fefe1c94a7
|
|
@@ -228,37 +228,38 @@ module Hokipoki
|
|
|
228
228
|
end
|
|
229
229
|
|
|
230
230
|
def display_next_steps
|
|
231
|
+
# Cool ASCII art for HOKIPOKI
|
|
232
|
+
ascii_art = <<~ASCII
|
|
233
|
+
██╗ ██╗ ██████╗ ██╗ ██╗██╗██████╗ ██████╗ ██╗ ██╗██╗
|
|
234
|
+
██║ ██║██╔═══██╗██║ ██╔╝██║██╔══██╗██╔═══██╗██║ ██╔╝██║
|
|
235
|
+
███████║██║ ██║█████╔╝ ██║██████╔╝██║ ██║█████╔╝ ██║
|
|
236
|
+
██╔══██║██║ ██║██╔═██╗ ██║██╔═══╝ ██║ ██║██╔═██╗ ██║
|
|
237
|
+
██║ ██║╚██████╔╝██║ ██╗██║██║ ╚██████╔╝██║ ██╗██║
|
|
238
|
+
╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝
|
|
239
|
+
ASCII
|
|
240
|
+
|
|
241
|
+
say ascii_art, :cyan
|
|
242
|
+
say ""
|
|
231
243
|
say "🎉 HOKIPOKI CORE INSTALLATION COMPLETE!", :green
|
|
232
244
|
say "=" * 60, :green
|
|
233
245
|
say ""
|
|
234
|
-
say "
|
|
246
|
+
say "🚀 SUPER SIMPLE NEXT STEPS:", :cyan
|
|
235
247
|
say ""
|
|
236
248
|
say "1. 📦 Install dependencies:", :white
|
|
237
249
|
say " bundle install", :yellow
|
|
238
250
|
say ""
|
|
239
|
-
say "2.
|
|
240
|
-
say " EDITOR=nano rails credentials:edit", :yellow
|
|
241
|
-
say ""
|
|
242
|
-
say " Add this structure:", :white
|
|
243
|
-
say credentials_template, :yellow
|
|
244
|
-
say ""
|
|
245
|
-
say "3. 🗄️ Run database migrations:", :white
|
|
246
|
-
say " rails db:migrate", :yellow
|
|
247
|
-
say ""
|
|
248
|
-
say "4. 🧠 Install HiveMind intelligence:", :white
|
|
251
|
+
say "2. 🧠 One-command setup (installs everything):", :white
|
|
249
252
|
say " rails g hive_mind:install", :yellow
|
|
250
253
|
say ""
|
|
251
|
-
say "
|
|
252
|
-
say "
|
|
254
|
+
say " ✅ This automatically installs:", :green
|
|
255
|
+
say " - HiveMind vector database", :dim
|
|
256
|
+
say " - Parasite attachment for Claude", :dim
|
|
257
|
+
say " - Gemini refinement system", :dim
|
|
258
|
+
say " - Database migrations", :dim
|
|
253
259
|
say ""
|
|
254
|
-
say "
|
|
255
|
-
say " - If bundle fails: Check Ruby version compatibility", :white
|
|
256
|
-
say " - If credentials fail: Ensure master.key exists", :white
|
|
257
|
-
say " - If GitHub OAuth needed: Set up GitHub app first", :white
|
|
260
|
+
say "🎭 THAT'S IT! Everything else is automatic!", :magenta
|
|
258
261
|
say ""
|
|
259
|
-
say "
|
|
260
|
-
say " - GitHub OAuth setup: https://docs.github.com/en/apps/oauth-apps", :white
|
|
261
|
-
say " - Rails credentials: https://guides.rubyonrails.org/security.html#custom-credentials", :white
|
|
262
|
+
say "Next: Start Rails server and restart Claude to see the magic! ✨", :yellow
|
|
262
263
|
say ""
|
|
263
264
|
end
|
|
264
265
|
|
data/lib/hokipoki/version.rb
CHANGED