playqueensgame-site-kit 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/LICENSE +21 -0
- data/README.md +16 -0
- data/lib/playqueensgame/site_kit.rb +36 -0
- metadata +49 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f4fdc7dfd7de1091f2443e2364f2e9927233a1fc812fe6812a49a5ed3267bc65
|
|
4
|
+
data.tar.gz: b72709a7211a1d2ac0a0e1f2421b8f2f2dd8dc5284fb3081253557dfb1a0d8f8
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b208b9d5409a474b89a3251534abc5587ae49795ae8f556ea683efb0f21dea314280099f9fc4f38f3298dd2ce9d5aa0ba706c96297f573adb3b1f2fd92539e13
|
|
7
|
+
data.tar.gz: 335511898ff22e860e4bf92bceaf0bb7ea1449df9e0e873c7623e1690c378cc70cefcf7fb9af0329efa8c9be3f547789a2aa4a8c0bfdc67a1d927386b7bd5d8a
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Queens Game
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Queens Game Site Kit
|
|
2
|
+
|
|
3
|
+
Small URL helpers for [Queens Game](https://playqueensgame.org), a free online colorful logic puzzle game with daily Queens, unlimited boards, and learning guides.
|
|
4
|
+
|
|
5
|
+
## Links
|
|
6
|
+
|
|
7
|
+
- Website: <https://playqueensgame.org>
|
|
8
|
+
- Play: <https://playqueensgame.org/#play>
|
|
9
|
+
- Daily: <https://playqueensgame.org/daily/>
|
|
10
|
+
- Learn: <https://playqueensgame.org/learn/>
|
|
11
|
+
- Blog: <https://playqueensgame.org/blog/>
|
|
12
|
+
- Rules: <https://playqueensgame.org/blog/queens-game-rules-explained/>
|
|
13
|
+
|
|
14
|
+
## Purpose
|
|
15
|
+
|
|
16
|
+
This repository keeps tiny, installable helpers for package registry metadata and examples. Each package exposes the same small set of stable Queens Game links.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
module Playqueensgame
|
|
2
|
+
module SiteKit
|
|
3
|
+
BASE_URL = "https://playqueensgame.org"
|
|
4
|
+
|
|
5
|
+
module_function
|
|
6
|
+
|
|
7
|
+
def home_url
|
|
8
|
+
BASE_URL
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def page_url(slug)
|
|
12
|
+
clean = slug.to_s.gsub(%r{\A/+|/+\z}, "")
|
|
13
|
+
clean.empty? ? BASE_URL : "#{BASE_URL}/#{clean}"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def play_url
|
|
17
|
+
"https://playqueensgame.org/#play"
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def daily_url
|
|
21
|
+
"https://playqueensgame.org/daily/"
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def learn_url
|
|
25
|
+
"https://playqueensgame.org/learn/"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def blog_url
|
|
29
|
+
"https://playqueensgame.org/blog/"
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def rules_url
|
|
33
|
+
"https://playqueensgame.org/blog/queens-game-rules-explained/"
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: playqueensgame-site-kit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Queens Game
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-05-19 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Small URL helpers for Queens Game, a free online colorful logic puzzle
|
|
14
|
+
game. at https://playqueensgame.org.
|
|
15
|
+
email:
|
|
16
|
+
- hello@playqueensgame.org
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- LICENSE
|
|
22
|
+
- README.md
|
|
23
|
+
- lib/playqueensgame/site_kit.rb
|
|
24
|
+
homepage: https://playqueensgame.org
|
|
25
|
+
licenses:
|
|
26
|
+
- MIT
|
|
27
|
+
metadata:
|
|
28
|
+
homepage_uri: https://playqueensgame.org
|
|
29
|
+
source_code_uri: https://github.com/bbwdadfg/playqueensgame-site-kit
|
|
30
|
+
post_install_message:
|
|
31
|
+
rdoc_options: []
|
|
32
|
+
require_paths:
|
|
33
|
+
- lib
|
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
requirements: []
|
|
45
|
+
rubygems_version: 3.0.3.1
|
|
46
|
+
signing_key:
|
|
47
|
+
specification_version: 4
|
|
48
|
+
summary: Small URL helpers for Queens Game.
|
|
49
|
+
test_files: []
|