abliteration 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.
- checksums.yaml +7 -0
- data/README.md +17 -0
- data/abliteration.gemspec +22 -0
- data/lib/abliteration.rb +28 -0
- metadata +50 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 86d53e9c1892282ea65bf0170590ab42e6114597c68f0ef4190a7467ea60fe53
|
|
4
|
+
data.tar.gz: 5678813c43c8b7a30354d136c178111119ddcab67305894d3b9a2ee7ed0e420b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 97df8f12b1d77c43597a086d18dce018a2cd689d7bb41fa9e9a0b226f28a8549ae5d6ae81c61fcedd0283a5397ddf5a962cd26bb76a797bf2df097cce3faf62f
|
|
7
|
+
data.tar.gz: 59001abbe69bad3e5adda01b804edb9af56401305fb9112d4d5088568a3a6e6c4d20ad8635d6f7aa17095bf4f3d5ddae017705e2521929cf0ebcfb8694b9dc9a
|
data/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# abliteration
|
|
2
|
+
|
|
3
|
+
Ruby wrapper for the [abliteration.org](https://abliteration.org) catalog API.
|
|
4
|
+
|
|
5
|
+
**Status:** namespace-reserved. A real Ruby client is planned. Until then, use the HTTP API directly or the [Node.js CLI](https://www.npmjs.com/package/@abliteration/cli):
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @abliteration/cli
|
|
9
|
+
abl login
|
|
10
|
+
abl models --method M4 --limit 5
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Full API docs: <https://abliteration.org/api>
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Gem::Specification.new do |spec|
|
|
2
|
+
spec.name = 'abliteration'
|
|
3
|
+
spec.version = '0.0.1'
|
|
4
|
+
spec.authors = ['Catyonic OU']
|
|
5
|
+
spec.email = ['antifaust@gmail.com']
|
|
6
|
+
|
|
7
|
+
spec.summary = 'Ruby wrapper for the abliteration.org catalog API (coming soon)'
|
|
8
|
+
spec.description = 'A Ruby client for abliteration.org catalog API is planned. ' \
|
|
9
|
+
'For now, use the HTTP API directly or the Node.js CLI ' \
|
|
10
|
+
'(npm install -g @abliteration/cli).'
|
|
11
|
+
spec.homepage = 'https://abliteration.org/api'
|
|
12
|
+
spec.license = 'MIT'
|
|
13
|
+
|
|
14
|
+
spec.required_ruby_version = '>= 2.7.0'
|
|
15
|
+
|
|
16
|
+
spec.metadata['homepage_uri'] = 'https://abliteration.org/api'
|
|
17
|
+
spec.metadata['documentation_uri'] = 'https://abliteration.org/api'
|
|
18
|
+
spec.metadata['bug_tracker_uri'] = 'https://abliteration.org/api'
|
|
19
|
+
|
|
20
|
+
spec.files = ['lib/abliteration.rb', 'README.md', 'abliteration.gemspec']
|
|
21
|
+
spec.require_paths = ['lib']
|
|
22
|
+
end
|
data/lib/abliteration.rb
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# abliteration - Ruby wrapper for abliteration.org catalog API
|
|
4
|
+
#
|
|
5
|
+
# This is a namespace-reservation release. A real Ruby client is planned;
|
|
6
|
+
# for now use the HTTP API directly or the Node.js CLI:
|
|
7
|
+
#
|
|
8
|
+
# npm install -g @abliteration/cli
|
|
9
|
+
# abl login
|
|
10
|
+
# abl models --method M4 --limit 5
|
|
11
|
+
#
|
|
12
|
+
# The HTTP API is documented at https://abliteration.org/api and requires
|
|
13
|
+
# no client: a Bearer token in the Authorization header is all it needs.
|
|
14
|
+
|
|
15
|
+
module Abliteration
|
|
16
|
+
VERSION = '0.0.1'
|
|
17
|
+
|
|
18
|
+
# Placeholder module. See https://abliteration.org/api for the current
|
|
19
|
+
# API surface. A Ruby client will land in a future minor release.
|
|
20
|
+
def self.info
|
|
21
|
+
{
|
|
22
|
+
version: VERSION,
|
|
23
|
+
status: 'namespace-reserved',
|
|
24
|
+
docs: 'https://abliteration.org/api',
|
|
25
|
+
cli: 'npm install -g @abliteration/cli'
|
|
26
|
+
}
|
|
27
|
+
end
|
|
28
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: abliteration
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Catyonic OU
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-09-16 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A Ruby client for abliteration.org catalog API is planned. For now, use
|
|
14
|
+
the HTTP API directly or the Node.js CLI (npm install -g @abliteration/cli).
|
|
15
|
+
email:
|
|
16
|
+
- antifaust@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- abliteration.gemspec
|
|
23
|
+
- lib/abliteration.rb
|
|
24
|
+
homepage: https://abliteration.org/api
|
|
25
|
+
licenses:
|
|
26
|
+
- MIT
|
|
27
|
+
metadata:
|
|
28
|
+
homepage_uri: https://abliteration.org/api
|
|
29
|
+
documentation_uri: https://abliteration.org/api
|
|
30
|
+
bug_tracker_uri: https://abliteration.org/api
|
|
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: 2.7.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.4.20
|
|
47
|
+
signing_key:
|
|
48
|
+
specification_version: 4
|
|
49
|
+
summary: Ruby wrapper for the abliteration.org catalog API (coming soon)
|
|
50
|
+
test_files: []
|