facialharmonyai-site-kit 0.1.0
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 +7 -0
- data/lib/facialharmonyai_site_kit.rb +39 -0
- metadata +45 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 32b555bb7083b5f74f047fa6651b1d4a9238b8820c5d5f0ff4af5b946311bc4e
|
|
4
|
+
data.tar.gz: 4a36fce1ccd53f8660498875a5cca8e9331944860e6eb605d28b91f934e7edae
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 945bdac4c1d41f59882b3c7ce864d203e1402a99ef7e87a57b8e8ab53678edee4908cddae1f78a4f39b687771cd6b72afd04f4ecd502973394698dd7ee550fce
|
|
7
|
+
data.tar.gz: 9c89e90cf2b48c4aad25044c20a90903cabd211570b2ce3fa46e1d1055781c30f3c5e38b63c63236a387e228ff9f47fa2adb6498e7236845326644c25dde454f
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# URL helpers for FacialHarmonyAI
|
|
2
|
+
# Website: https://facialharmonyai.com
|
|
3
|
+
|
|
4
|
+
module FacialharmonyaiSiteKit
|
|
5
|
+
BASE = "https://facialharmonyai.com"
|
|
6
|
+
|
|
7
|
+
def self.analysis_url
|
|
8
|
+
"#{BASE}/analyze"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def self.pricing_url
|
|
12
|
+
"#{BASE}/#pricing"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.features_url
|
|
16
|
+
"#{BASE}/#features"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.faq_url
|
|
20
|
+
"#{BASE}/#faq"
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def self.report_url(report_id)
|
|
24
|
+
raise ArgumentError, "report_id must be a non-empty string" if report_id.nil? || report_id.empty?
|
|
25
|
+
"#{BASE}/report/#{URI.encode_www_form_component(report_id)}"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def self.dashboard_url
|
|
29
|
+
"#{BASE}/dashboard"
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def self.blog_url
|
|
33
|
+
"#{BASE}/blog"
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def self.valid_report_id?(id)
|
|
37
|
+
id.is_a?(String) && id.match?(/\A[a-zA-Z0-9]{4,64}\z/)
|
|
38
|
+
end
|
|
39
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: facialharmonyai-site-kit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- FacialHarmonyAI
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-06-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: URL helpers and metadata utilities for FacialHarmonyAI — AI-powered facial
|
|
14
|
+
analysis and coaching platform
|
|
15
|
+
email:
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- lib/facialharmonyai_site_kit.rb
|
|
21
|
+
homepage: https://facialharmonyai.com
|
|
22
|
+
licenses:
|
|
23
|
+
- MIT
|
|
24
|
+
metadata:
|
|
25
|
+
source_code_uri: https://github.com/bbwdadfg/facialharmonyai-site-kit
|
|
26
|
+
post_install_message:
|
|
27
|
+
rdoc_options: []
|
|
28
|
+
require_paths:
|
|
29
|
+
- lib
|
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '0'
|
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
requirements: []
|
|
41
|
+
rubygems_version: 3.0.3.1
|
|
42
|
+
signing_key:
|
|
43
|
+
specification_version: 4
|
|
44
|
+
summary: URL helpers for FacialHarmonyAI
|
|
45
|
+
test_files: []
|