clickwrap 0.0.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/CHANGELOG.md +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +1708 -0
- data/lib/clickwrap/version.rb +5 -0
- data/lib/clickwrap.rb +15 -0
- metadata +57 -0
data/lib/clickwrap.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "clickwrap/version"
|
|
4
|
+
|
|
5
|
+
# clickwrap is not implemented yet.
|
|
6
|
+
#
|
|
7
|
+
# This release exists only to hold the gem name while the product is being
|
|
8
|
+
# defined. It ships no engine, no models, no migrations, and no public API,
|
|
9
|
+
# and it deliberately declares no runtime dependencies. Requiring it does
|
|
10
|
+
# nothing beyond defining this module and VERSION.
|
|
11
|
+
#
|
|
12
|
+
# See https://github.com/rameerez/clickwrap for the README-first contract
|
|
13
|
+
# describing the gem we intend to build.
|
|
14
|
+
module Clickwrap
|
|
15
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: clickwrap
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- rameerez
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-08-15 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: This release holds the clickwrap gem name while the product is being
|
|
13
|
+
defined; it is deliberately empty. It ships no engine, no models, no migrations,
|
|
14
|
+
no generators, and no public API, and declares no runtime dependencies. Do not depend
|
|
15
|
+
on it. The intended gem is an evidence-and-assent layer for Rails covering agreements,
|
|
16
|
+
consent, declarations, and authorizations, and its README describes that intended
|
|
17
|
+
design as a contract to build against, not as code that exists today. A functional
|
|
18
|
+
release will be published as 0.1.0 or later.
|
|
19
|
+
email:
|
|
20
|
+
- rubygems@rameerez.com
|
|
21
|
+
executables: []
|
|
22
|
+
extensions: []
|
|
23
|
+
extra_rdoc_files: []
|
|
24
|
+
files:
|
|
25
|
+
- CHANGELOG.md
|
|
26
|
+
- LICENSE.txt
|
|
27
|
+
- README.md
|
|
28
|
+
- lib/clickwrap.rb
|
|
29
|
+
- lib/clickwrap/version.rb
|
|
30
|
+
homepage: https://github.com/rameerez/clickwrap
|
|
31
|
+
licenses:
|
|
32
|
+
- MIT
|
|
33
|
+
metadata:
|
|
34
|
+
allowed_push_host: https://rubygems.org
|
|
35
|
+
homepage_uri: https://github.com/rameerez/clickwrap
|
|
36
|
+
source_code_uri: https://github.com/rameerez/clickwrap/tree/main
|
|
37
|
+
changelog_uri: https://github.com/rameerez/clickwrap/blob/main/CHANGELOG.md
|
|
38
|
+
bug_tracker_uri: https://github.com/rameerez/clickwrap/issues
|
|
39
|
+
rubygems_mfa_required: 'true'
|
|
40
|
+
rdoc_options: []
|
|
41
|
+
require_paths:
|
|
42
|
+
- lib
|
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 3.1.0
|
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
53
|
+
requirements: []
|
|
54
|
+
rubygems_version: 3.6.2
|
|
55
|
+
specification_version: 4
|
|
56
|
+
summary: 'Name reservation: clickwrap is not implemented or published yet'
|
|
57
|
+
test_files: []
|