Skip to content

Commit de1d54b

Browse files
authored
Merge pull request #321 from DannyBen/fix/validate-verbose
Fix validate --verbose command
2 parents 15f174b + 80792ee commit de1d54b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
LC_ALL: en_US.UTF-8
1515

1616
strategy:
17-
matrix: { ruby: ['2.7', '3.0', '3.1', 'head'] }
17+
matrix: { ruby: ['2.7', '3.0', '3.1', '3.2', head] }
1818

1919
steps:
2020
- name: Checkout code

lib/bashly/commands/doc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def data
6969
result = raw_data.select { |k, _v| k.include? args['SEARCH'] }
7070
return result if result.any?
7171

72-
raise Error, "No match"
72+
raise Error, 'No match'
7373
end
7474

7575
def raw_data

lib/bashly/commands/validate.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'lp'
2+
13
module Bashly
24
module Commands
35
class Validate < Base

0 commit comments

Comments
 (0)