typr 1.1.2 → 1.2.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.
data/typr.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "typr"
5
- s.version = "1.1.2"
5
+ s.version = "1.2.0"
6
6
  s.date = "2026-07-25"
7
7
  s.homepage = "https://codeberg.org/typr/typr"
8
8
  s.licenses = ["MIT"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.authors = ["Kilian Reitmayr"]
11
11
  s.summary = "Terminal UI Toolkit"
12
12
  s.email = ["reitmayr@protonmail.com"]
13
- s.files = Dir["lib/*.rb"] + ["LICENSE", "README.md", "CHANGELOG.md", "Gemfile", "typr.gemspec",
13
+ s.files = Dir["lib/*.rb"] + ["LICENSE", "README.md", "CHANGELOG.md", "typr.gemspec",
14
14
  "example/grid", "example/browser", "example/text", "example/top500.csv", "share/mimetypes"]
15
15
  s.required_ruby_version = Gem::Requirement.new(">= 3.1")
16
16
  s.add_runtime_dependency("unicode-display_width", ["~> 3.1"])
metadata CHANGED
@@ -1,11 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kilian Reitmayr
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
10
  date: 2026-07-25 00:00:00.000000000 Z
@@ -24,7 +23,6 @@ dependencies:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
25
  version: '3.1'
27
- description:
28
26
  email:
29
27
  - reitmayr@protonmail.com
30
28
  executables: []
@@ -32,7 +30,6 @@ extensions: []
32
30
  extra_rdoc_files: []
33
31
  files:
34
32
  - CHANGELOG.md
35
- - Gemfile
36
33
  - LICENSE
37
34
  - README.md
38
35
  - example/browser
@@ -56,7 +53,6 @@ homepage: https://codeberg.org/typr/typr
56
53
  licenses:
57
54
  - MIT
58
55
  metadata: {}
59
- post_install_message:
60
56
  rdoc_options: []
61
57
  require_paths:
62
58
  - lib
@@ -71,8 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
67
  - !ruby/object:Gem::Version
72
68
  version: '0'
73
69
  requirements: []
74
- rubygems_version: 3.3.15
75
- signing_key:
70
+ rubygems_version: 3.6.9
76
71
  specification_version: 4
77
72
  summary: Terminal UI Toolkit
78
73
  test_files: []
data/Gemfile DELETED
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- gemspec
6
-
7
- group :development, :test do
8
- gem "rspec", "~> 3.0"
9
- gem "rake"
10
- end