cliptic 0.1.3 → 0.1.4
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 +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +9 -7
- data/README.md +1 -1
- data/assets/demo.gif +0 -0
- data/cliptic.gemspec +3 -3
- data/lib/cliptic/version.rb +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 700cc42e0e428913954a062f17e478c1a92ba202c79c0aad29a4d0fbf9a56552
|
|
4
|
+
data.tar.gz: e8e6e44c4591838c135c46b8aff05ca2868b9cefca1d564737c2c9759c063fcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d35333dbf4f1137677d1ba5d47cad507984aa8d312c4dd415f1a4a5a5cf1c821df13955e66ab5aae7d65bb3c09cce9c329f8c1885fb312290e9f4d9d2a90ddd
|
|
7
|
+
data.tar.gz: 8667761079ea2c9d5ea729c4388c4e9748638ca6db6eea3f03d729e610768ff038bcb25bf992e572b5e6ece0e57b7d84a99e7e182e39a24b2c0bf758502b1e2b
|
data/CHANGELOG.md
CHANGED
|
@@ -16,3 +16,13 @@
|
|
|
16
16
|
|
|
17
17
|
### Features
|
|
18
18
|
- Add menu recolour feature
|
|
19
|
+
|
|
20
|
+
## [0.1.3] - 2021-10-01
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
- Fix the ssl certificate bug that prevents fetching puzzles
|
|
24
|
+
- Fix the "out of range" bug when moving to an undefined index using `g`
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
- Add manual redraw feature to the main puzzle view. Called with `^L` (useful for terminal resize)
|
|
28
|
+
- Add exit controls to the resize interface (`q` or `^C`)
|
data/Gemfile.lock
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
cliptic (0.1.
|
|
5
|
-
curb
|
|
6
|
-
curses
|
|
7
|
-
sqlite3
|
|
4
|
+
cliptic (0.1.3)
|
|
5
|
+
curb
|
|
6
|
+
curses
|
|
7
|
+
sqlite3
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
curb (
|
|
13
|
-
curses (1.
|
|
12
|
+
curb (1.2.2)
|
|
13
|
+
curses (1.6.0)
|
|
14
14
|
rake (13.0.3)
|
|
15
|
-
sqlite3 (
|
|
15
|
+
sqlite3 (2.9.2-arm64-darwin)
|
|
16
|
+
sqlite3 (2.9.2-x86_64-darwin)
|
|
16
17
|
|
|
17
18
|
PLATFORMS
|
|
19
|
+
arm64-darwin-25
|
|
18
20
|
x86_64-darwin-18
|
|
19
21
|
|
|
20
22
|
DEPENDENCIES
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# `cliptic`: Crosswords in your Terminal
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
- A command-line interface for downloading and playing cryptic crosswords from within the terminal.
|
data/assets/demo.gif
ADDED
|
Binary file
|
data/cliptic.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.bindir = "bin"
|
|
20
20
|
spec.executables << "cliptic"
|
|
21
21
|
spec.require_paths = ["lib"]
|
|
22
|
-
spec.add_dependency("curses"
|
|
23
|
-
spec.add_dependency("curb"
|
|
24
|
-
spec.add_dependency("sqlite3"
|
|
22
|
+
spec.add_dependency("curses")
|
|
23
|
+
spec.add_dependency("curb")
|
|
24
|
+
spec.add_dependency("sqlite3")
|
|
25
25
|
end
|
data/lib/cliptic/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cliptic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Welham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: curses
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: '0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: curb
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0
|
|
33
|
+
version: '0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0
|
|
40
|
+
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: sqlite3
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - "
|
|
45
|
+
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: '0'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - "
|
|
52
|
+
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: '0'
|
|
55
55
|
description: A terminal user interface to fetch and play cryptic crosswords
|
|
56
56
|
email:
|
|
57
57
|
- welhamm@gmail.com
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- LICENSE.txt
|
|
68
68
|
- README.md
|
|
69
69
|
- Rakefile
|
|
70
|
+
- assets/demo.gif
|
|
70
71
|
- bin/cliptic
|
|
71
72
|
- bin/console
|
|
72
73
|
- bin/setup
|
|
@@ -103,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
104
|
- !ruby/object:Gem::Version
|
|
104
105
|
version: '0'
|
|
105
106
|
requirements: []
|
|
106
|
-
rubygems_version: 3.
|
|
107
|
+
rubygems_version: 3.4.1
|
|
107
108
|
signing_key:
|
|
108
109
|
specification_version: 4
|
|
109
110
|
summary: Terminal-based cryptic crossword player
|