rake-tui 0.2.2 → 0.2.3
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 +4 -0
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/rake-tui/ext/rake/tui.rb +1 -1
- data/rake-tui.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4982123b5ac9d9339b1d753b92a8e234434f7dde48b4bb5e35931416950bde15
|
4
|
+
data.tar.gz: e7f6f3a898a75b40be96b88a7f37c22fe31c139eb85fe79f2d134a9180b1f7ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 358dccc0992f11ff52a99ab08746272c9fa28b9bef5738522b2d26a491ee1f804eb6f56cebd302656bc32346db7a20ef0102eff23b6828c145780840df07e266
|
7
|
+
data.tar.gz: 35b62d8deaf05e51a98f263ac3452bf7b134264454fac07e1cc312e0e9b9832e2584a38565ce776f94f2a3acbd8aa4f6d0e67ad5d4c61d425c0860ed4b401773
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -100,7 +100,7 @@ Rake::TUI.run # this now displays the specified task list
|
|
100
100
|
The default branding header looks like this (from `Rake::TUI::BRANDING_HEADER_DEFAULT`):
|
101
101
|
|
102
102
|
```
|
103
|
-
== rake-tui version 0.2.
|
103
|
+
== rake-tui version 0.2.3 ==
|
104
104
|
```
|
105
105
|
|
106
106
|
It may be customized by passing in the `branding_header` option (removed when set to `nil`).
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.3
|
@@ -83,7 +83,7 @@ module Rake
|
|
83
83
|
begin
|
84
84
|
task_formatter ||= TASK_FORMATTER_DEFAULT
|
85
85
|
rake_task_lines = @tasks.map {|task, tasks| task_formatter.call(task, @tasks)}
|
86
|
-
rake_task_line = prompt.select(prompt_question,
|
86
|
+
rake_task_line = prompt.select(prompt_question, cycle: true, per_page: [TTY::Screen.height - 5, 1].max, filter: true, show_help: :always) do |list|
|
87
87
|
list.choices rake_task_lines
|
88
88
|
list.singleton_class.define_method(:keyspace) do |event|
|
89
89
|
return unless filterable?
|
data/rake-tui.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: rake-tui 0.2.
|
5
|
+
# stub: rake-tui 0.2.3 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "rake-tui".freeze
|
9
|
-
s.version = "0.2.
|
9
|
+
s.version = "0.2.3"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|
13
|
-
s.authors = ["
|
13
|
+
s.authors = ["AndyMaleh".freeze]
|
14
14
|
s.date = "2020-09-24"
|
15
15
|
s.description = "Rake Text-based User Interface".freeze
|
16
16
|
s.email = "andy.am@gmail.com".freeze
|