triauth 0.0.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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +28 -0
  3. data/README.md +11 -0
  4. data/lib/triauth.rb +14 -0
  5. metadata +50 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8b197d9bf06ed03bfd3142702c779bf76a63cf329f5ae919b240743cccddbe13
4
+ data.tar.gz: 5818534e27d168418540cab6799957b31d702affb35e989aaa64def3fdb2a802
5
+ SHA512:
6
+ metadata.gz: 8cfbda5244987a71b8414e7af66578c7a2dc2bf3e38767e15b70395996ba0ac8fbbc27bbde549ce60fe0bf92a00cb20c24c58d3445b56ab91f3fd3a3fab69c6d
7
+ data.tar.gz: a324978996ea56f7cf6525dae5f6689368b9744cffec1c33afc16ae09706c0b4fbba116d6d62723fdeebd753789f55502352f0eed8fc91964927e32435b761e6
data/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2026 The Triauth Authors (https://www.triauth.org/)
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its contributors
16
+ may be used to endorse or promote products derived from this software
17
+ without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # triauth (placeholder)
2
+
3
+ This is a placeholder published by the [triauth project](https://www.triauth.org/)
4
+ to reserve the package name and prevent supply-chain confusion.
5
+
6
+ It provides **no functionality** at the moment.
7
+
8
+ The reference implementation is in progress and will take over this package name.
9
+
10
+ * Learn more: https://www.triauth.org/
11
+ * GitHub: https://github.com/triauth
data/lib/triauth.rb ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Official placeholder for the triauth project. See https://www.triauth.org/.
4
+ module Triauth
5
+ VERSION = "0.0.1"
6
+
7
+ MESSAGE = "triauth for Ruby has not been released yet.\n" \
8
+ "This package name is reserved by the triauth project to prevent supply-chain confusion.\n" \
9
+ "See https://www.triauth.org/"
10
+
11
+ def self.method_missing(*) = raise(NotImplementedError, MESSAGE)
12
+
13
+ def self.respond_to_missing?(*) = true
14
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: triauth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Triauth
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-06-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 'triauth: password-less sign-in for web. Placeholder - real release coming;
14
+ see https://www.triauth.org/'
15
+ email:
16
+ - devs@triauth.org
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - lib/triauth.rb
24
+ homepage: https://www.triauth.org/
25
+ licenses:
26
+ - BSD-3-Clause
27
+ metadata:
28
+ homepage_uri: https://www.triauth.org/
29
+ source_code_uri: https://github.com/triauth/triauth-ruby
30
+ rubygems_mfa_required: 'true'
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '3.0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.5.22
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: 'triauth: password-less sign-in for web (placeholder)'
50
+ test_files: []