hokipoki 0.8.2 → 0.8.4
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/parasite/install_generator.rb +12 -10
- data/lib/hokipoki/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8431a8c43517c5acfa725df99108d9b0c1751cd930a1b8dbf58825738b2d93e4
|
|
4
|
+
data.tar.gz: 1b9e86fe6b36e7157cdd7168b1b7808575340310c0c6650600e31a220fd78bbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 240f6d073408ff5fea984d55dc37865a50eac078e63b0df33b615d47b8278a7c86751864e8e0352edad3c897507d417a4555b245584691a649e124c0e62026a5
|
|
7
|
+
data.tar.gz: e9431bebc13de61241be6e56cb62ff063f93bbd8bd6ee290f6e5ee08239050aa78736c62c59ce9dfd20d0d35cf8c36e191685f61a269a9df838b656618592073
|
|
@@ -377,16 +377,18 @@ module Parasite
|
|
|
377
377
|
end
|
|
378
378
|
RUBY
|
|
379
379
|
|
|
380
|
-
# Add to application configuration
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
380
|
+
# Add to application configuration - insert before the final 'end'
|
|
381
|
+
insert_into_file "config/application.rb", before: /^ end\s*$/ do
|
|
382
|
+
<<~RUBY
|
|
383
|
+
|
|
384
|
+
# Start Claude detection service in development
|
|
385
|
+
if Rails.env.development?
|
|
386
|
+
config.after_initialize do
|
|
387
|
+
ClaudeDetectionService.instance.start_monitoring
|
|
388
|
+
end
|
|
389
|
+
end
|
|
390
|
+
RUBY
|
|
391
|
+
end
|
|
390
392
|
end
|
|
391
393
|
|
|
392
394
|
def setup_context_injection
|
data/lib/hokipoki/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hokipoki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rails Utilities
|
|
@@ -121,6 +121,20 @@ dependencies:
|
|
|
121
121
|
- - ">="
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
123
|
version: '0.8'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: herb
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0.1'
|
|
131
|
+
type: :runtime
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0.1'
|
|
124
138
|
- !ruby/object:Gem::Dependency
|
|
125
139
|
name: rspec-rails
|
|
126
140
|
requirement: !ruby/object:Gem::Requirement
|