bbl 0.0.4 → 0.0.5
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/lib/bbl.rb +2 -2
- data/lib/bbl/version.rb +1 -1
- metadata +1 -1
data/lib/bbl.rb
CHANGED
@@ -4,7 +4,7 @@ module Bbl
|
|
4
4
|
validate argv
|
5
5
|
levels_above = '../../..'
|
6
6
|
path = File.expand_path __FILE__ + levels_above + '/akjv.txt'
|
7
|
-
cmd = ['grep'] + argv + [path]
|
7
|
+
cmd = ['grep', '-i'] + argv + [path]
|
8
8
|
system *cmd
|
9
9
|
end
|
10
10
|
|
@@ -13,7 +13,7 @@ module Bbl
|
|
13
13
|
end
|
14
14
|
def show_help
|
15
15
|
puts <<EOT
|
16
|
-
\e[35;1mThis is just a wrapper around grep ____ akjv.txt\e[0m
|
16
|
+
\e[35;1mThis is just a wrapper around grep -i ____ akjv.txt\e[0m
|
17
17
|
(so, for now, the help is: man grep ).
|
18
18
|
If you want to see the whole text, you can do:
|
19
19
|
\e[35mbbl . | less\e[0m
|
data/lib/bbl/version.rb
CHANGED