wan27-org 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/README.md +44 -0
- data/lib/wan27_org.rb +8 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 0f85429bd536c626933dd2ec5295c3de7c2b4230997af60630b827a6e3728dfc
|
|
4
|
+
data.tar.gz: e1774dce8dc0efd521cf86fd65d39833a923ef20ee3c4e86798eb8bd89bd3d79
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ca2938a182c2632110ffa6b6686667f17a9bd1fe2e41a3bd771ee2a759b1037dc27e2363a96abab62f0fa99c8a7b43f10f9bf20a5aef79d5167737e24a9d4485
|
|
7
|
+
data.tar.gz: 5aab8aa1b56791fa635f3cb117f5c82c10afb816763226e3a0d8b1a743f175f41fcea65e3f873071bd56f0855bf270667292f07882fc0cc89970f9a237b8df67
|
data/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# wan27-org
|
|
2
|
+
|
|
3
|
+
Ruby integration package for [wan27.org](https://wan27.org).
|
|
4
|
+
|
|
5
|
+
This gem provides a compact Ruby entry point for projects that need to identify
|
|
6
|
+
or integrate with the wan27.org platform. It is intentionally small so it can be
|
|
7
|
+
installed quickly and expanded as the public API grows.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
gem install wan27-org
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or add it to a Gemfile:
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
gem "wan27-org"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```ruby
|
|
24
|
+
require "wan27_org"
|
|
25
|
+
|
|
26
|
+
puts Wan27Org.hello
|
|
27
|
+
puts Wan27Org::HOMEPAGE
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Included Utilities
|
|
31
|
+
|
|
32
|
+
- `Wan27Org.hello` for a quick installation check.
|
|
33
|
+
- `Wan27Org::HOMEPAGE` pointing to `https://wan27.org`.
|
|
34
|
+
- Gem metadata for homepage, source code, and documentation links.
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- Website: https://wan27.org
|
|
39
|
+
- Documentation: https://wan27.org/docs
|
|
40
|
+
- Source: https://github.com/youram470-art/wan27-org-ruby
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT
|
data/lib/wan27_org.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: wan27-org
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- wan27.org
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-06-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A minimal Ruby package placeholder for https://wan27.org.
|
|
14
|
+
email:
|
|
15
|
+
- support@wan27.org
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.md
|
|
21
|
+
- lib/wan27_org.rb
|
|
22
|
+
homepage: https://wan27.org
|
|
23
|
+
licenses:
|
|
24
|
+
- MIT
|
|
25
|
+
metadata:
|
|
26
|
+
homepage_uri: https://wan27.org
|
|
27
|
+
source_code_uri: https://github.com/youram470-art/wan27-org-ruby
|
|
28
|
+
documentation_uri: https://wan27.org/docs
|
|
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: '0'
|
|
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: Integration package for https://wan27.org
|
|
48
|
+
test_files: []
|