facilguide 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/facilguide.rb +20 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: bd9bea946596b6f446e9bdc28a3586d499aac8d233ec971e8dbc9fb431e5ac7d
|
|
4
|
+
data.tar.gz: 4e91607bd3587553e7483d59b5d67ff6bf86a7849e3079ce2a297f96837d6a50
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a3a7875027364d2b44ef33150d097e000043d2e845a3ab463709c21a0256a455d7cdbb3809e56d0ffcb23d7b7ab69b1348875f1435181687b5eb5c6ddaf19b28
|
|
7
|
+
data.tar.gz: 933cdb6d5ecb84195cd67ea6c4d10f18df161f8520439271775ba4cbd3c5a53b7fceed1be5dc19136a564fcff3fbde7dd5d86a373fc499d0b5c533c4705dffec
|
data/lib/facilguide.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Facil Guide - Multilingual tech guides for seniors
|
|
4
|
+
# https://facil.guide
|
|
5
|
+
|
|
6
|
+
module FacilGuide
|
|
7
|
+
VERSION = '0.1.0'
|
|
8
|
+
|
|
9
|
+
BASE_URL = 'https://facil.guide'
|
|
10
|
+
|
|
11
|
+
LANGUAGES = %w[en es fr pt it].freeze
|
|
12
|
+
|
|
13
|
+
def self.version
|
|
14
|
+
VERSION
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def self.base_url
|
|
18
|
+
BASE_URL
|
|
19
|
+
end
|
|
20
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: facilguide
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Arnaud Leroy
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-03-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Utilities for Facil Guide, a multilingual platform providing simple technology
|
|
14
|
+
guides for seniors in English, Spanish, French, Portuguese, and Italian.
|
|
15
|
+
email: dropthehq@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- lib/facilguide.rb
|
|
21
|
+
homepage: https://facil.guide
|
|
22
|
+
licenses:
|
|
23
|
+
- MIT
|
|
24
|
+
metadata:
|
|
25
|
+
homepage_uri: https://facil.guide
|
|
26
|
+
source_code_uri: https://github.com/BenchGecko/facilguide-ruby
|
|
27
|
+
documentation_uri: https://facil.guide/en/
|
|
28
|
+
bug_tracker_uri: https://github.com/BenchGecko/facilguide-ruby/issues
|
|
29
|
+
post_install_message:
|
|
30
|
+
rdoc_options: []
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '2.5'
|
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
requirements: []
|
|
44
|
+
rubygems_version: 3.0.3.1
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: Multilingual tech guide utilities
|
|
48
|
+
test_files: []
|