imdb-terminal 1.3.0 → 2.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 +4 -4
- data/bin/imdb +4 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df8c9e075ec32ec9195b5a468edaafa0cbac1c5b1caae765749e2223219bca50
|
4
|
+
data.tar.gz: 128db2671d90b4b7f74b6f521a1185b1c4b58891e18774cd7459062d7d883cd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0641bfb21f50c83ab60bcdb3873bbbfb3637b3182dcb391481d776e3ac27d8fc88be5e1b7ab27b9ed47e05aec1c7f4cbcc1254c81a3234a05f6289a9b2111bf1
|
7
|
+
data.tar.gz: 34429a63cf57f0004cefd5ea23d8912e2b8b460a6c9be78518cb9d2c34438f0623151f22b4d77131cb954e7f6b0a7773339e1a54a290147e8edd6ae613a1eef0
|
data/bin/imdb
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
# for any damages resulting from its use. Further, I am under no
|
15
15
|
# obligation to maintain or extend this software. It is provided
|
16
16
|
# on an 'as is' basis without any expressed or implied warranty.
|
17
|
-
# Version:
|
17
|
+
# Version: 2.0.0: Breaking change - requires rcurses 6.0.0+ with explicit init
|
18
18
|
|
19
19
|
# REQUIRES AND CONSTANTS {{{1
|
20
20
|
require 'io/console'
|
@@ -37,6 +37,9 @@ include Rcurses
|
|
37
37
|
include Rcurses::Cursor
|
38
38
|
include Rcurses::Input
|
39
39
|
|
40
|
+
# Initialize rcurses (required for rcurses 6.0.0+)
|
41
|
+
Rcurses.init!
|
42
|
+
|
40
43
|
Thread.report_on_exception = false
|
41
44
|
CONFIG_FILE = File.join(Dir.home, '.imdb.yml')
|
42
45
|
DATA_DIR = File.join(Dir.home, '.imdb', 'data')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imdb-terminal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '6.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: '6.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: nokogiri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -70,9 +70,8 @@ description: 'Discover and manage movies and TV series from IMDb''s Top 250 list
|
|
70
70
|
Features smart search with preview mode, advanced filtering by rating/year/genre,
|
71
71
|
streaming information via TMDb, wish lists, and terminal poster display. Enhanced
|
72
72
|
with jump-to-existing items, duplicate management, and robust data handling. Version
|
73
|
-
|
74
|
-
|
75
|
-
switching.'
|
73
|
+
2.0.0: Breaking change - requires rcurses 6.0.0+ with explicit initialization for
|
74
|
+
Ruby 3.4+ compatibility.'
|
76
75
|
email: g@isene.com
|
77
76
|
executables:
|
78
77
|
- imdb
|