hokipoki 0.1.0 → 0.1.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/lib/hokipoki/version.rb +1 -1
- data/lib/hokipoki.rb +8 -6
- 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: 92ffea95c7dd10aaf5d2c57c85a2de216e2b51f92c2d095b5daee1270c6aa598
|
|
4
|
+
data.tar.gz: 493371dfdbbaea63ec97881df435b51f109a6b960ceec8d9ddf3483bb40c2f23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecfb305d2039bf150f00325b6991a14141b588a42f0758112d70a9e3b87d947f4b34f074ebe784a3c2568a32354a1b9a1dad55250719fafb28e94712b3117921
|
|
7
|
+
data.tar.gz: 041cd39bc84d83b2ef3537dde8a8ec6bb46def7f3e8a971eef2c43cc44a58c775f29728ed123c760a93a039f98c0f553378a2dbc3f46a980a80f5c8353b0ebdb
|
data/lib/hokipoki/version.rb
CHANGED
data/lib/hokipoki.rb
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require_relative "hokipoki/version"
|
|
4
|
+
|
|
5
|
+
module Hokipoki
|
|
6
|
+
class Error < StandardError; end
|
|
7
|
+
class ConfigurationError < Error; end
|
|
8
|
+
class IntelligenceError < Error; end
|
|
9
|
+
class ParasiteError < Error; end
|
|
10
|
+
end
|
|
11
|
+
|
|
4
12
|
require_relative "hokipoki/configuration"
|
|
5
13
|
require_relative "hokipoki/license_validator"
|
|
6
14
|
require_relative "hokipoki/engine"
|
|
@@ -54,12 +62,6 @@ rescue LoadError => e
|
|
|
54
62
|
Rails.logger&.debug "Claude integration not loaded: #{e.message}"
|
|
55
63
|
end
|
|
56
64
|
|
|
57
|
-
module Hokipoki
|
|
58
|
-
class Error < StandardError; end
|
|
59
|
-
class ConfigurationError < Error; end
|
|
60
|
-
class IntelligenceError < Error; end
|
|
61
|
-
class ParasiteError < Error; end
|
|
62
|
-
|
|
63
65
|
# Validate license on gem load (before anything else)
|
|
64
66
|
begin
|
|
65
67
|
LicenseValidator.validate! if defined?(Rails)
|